X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=02a6240b6afc09f33b70eeda438fa72e9c148ef5;hp=03afc8619c307baa2c96f945a3aefa63f7c081a0;hb=69af03a2c2fccc06cb836f42a10b490a48f29c15;hpb=698517be481301b4525c29873134a67b8343af3c diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index 03afc861..02a6240b 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, ...);