summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/pocketc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/pocketc.h')
-rw-r--r--src/mess/includes/pocketc.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mess/includes/pocketc.h b/src/mess/includes/pocketc.h
deleted file mode 100644
index 5edc361dc70..00000000000
--- a/src/mess/includes/pocketc.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// license:GPL-2.0+
-// copyright-holders:Peter Trauner
-/*****************************************************************************
- *
- * includes/pocketc.h
- *
- ****************************************************************************/
-
-#ifndef POCKETC_H_
-#define POCKETC_H_
-
-typedef const char *POCKETC_FIGURE[];
-
-class pocketc_state : public driver_device
-{
-public:
- pocketc_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag) { }
-
- DECLARE_PALETTE_INIT(pocketc);
-
- static const unsigned short pocketc_colortable[8][2];
- void pocketc_draw_special(bitmap_ind16 &bitmap,int x, int y, const POCKETC_FIGURE fig, int color);
-};
-
-#endif /* POCKETC_H_ */