aboutsummaryrefslogtreecommitdiff
path: root/frontend/plugin_lib.h
diff options
context:
space:
mode:
authornotaz2010-12-09 19:15:01 +0200
committernotaz2010-12-14 15:25:05 +0200
commit69af03a2c2fccc06cb836f42a10b490a48f29c15 (patch)
tree486d6a6d91e252a95cf56e48057cbe28eaee34ee /frontend/plugin_lib.h
parent698517be481301b4525c29873134a67b8343af3c (diff)
downloadpcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.tar.gz
pcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.tar.bz2
pcsx_rearmed-69af03a2c2fccc06cb836f42a10b490a48f29c15.zip
add OMAP layer, also preliminary menu, hud and input support
Diffstat (limited to 'frontend/plugin_lib.h')
-rw-r--r--frontend/plugin_lib.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h
index 03afc86..02a6240 100644
--- a/frontend/plugin_lib.h
+++ b/frontend/plugin_lib.h
@@ -1,7 +1,29 @@
+extern int keystate;
+enum {
+ DKEY_SELECT = 0,
+ DKEY_L3,
+ DKEY_R3,
+ DKEY_START,
+ DKEY_UP,
+ DKEY_RIGHT,
+ DKEY_DOWN,
+ DKEY_LEFT,
+ DKEY_L2,
+ DKEY_R2,
+ DKEY_L1,
+ DKEY_R1,
+ DKEY_TRIANGLE,
+ DKEY_CIRCLE,
+ DKEY_CROSS,
+ DKEY_SQUARE,
+};
+
extern void *pl_fbdev_buf;
int pl_fbdev_init(void);
int pl_fbdev_set_mode(int w, int h, int bpp);
void *pl_fbdev_flip(void);
void pl_fbdev_finish(void);
+
+void pl_text_out16(int x, int y, const char *texto, ...);