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.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mess/includes/pocketc.h b/src/mess/includes/pocketc.h
new file mode 100644
index 00000000000..3a0c9c9e688
--- /dev/null
+++ b/src/mess/includes/pocketc.h
@@ -0,0 +1,23 @@
+/*****************************************************************************
+ *
+ * includes/pocketc.h
+ *
+ ****************************************************************************/
+
+#ifndef POCKETC_H_
+#define POCKETC_H_
+
+
+/*----------- defined in video/pocketc.c -----------*/
+
+extern PALETTE_INIT( pocketc );
+extern VIDEO_START( pocketc );
+
+extern const unsigned short pocketc_colortable[8][2];
+
+typedef const char *POCKETC_FIGURE[];
+void pocketc_draw_special(bitmap_ind16 &bitmap,
+ int x, int y, const POCKETC_FIGURE fig, int color);
+
+
+#endif /* POCKETC_H_ */