X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=53389d2d1f5bde894030a92add76c8a150cac375;hp=81999a33a454b83c30b012d2fc9ea7b268e30fed;hb=297b3d633ad25797a4f355c57964b7ce3aee6936;hpb=6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index 81999a33..53389d2d 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -22,11 +22,22 @@ enum { extern void *pl_fbdev_buf; int pl_fbdev_open(void); -int pl_fbdev_set_mode(int w, int h, int bpp); -void pl_fbdev_flip(void); +void *pl_fbdev_set_mode(int w, int h, int bpp); +void *pl_fbdev_flip(void); void pl_fbdev_close(void); -void pl_text_out16(int x, int y, const char *texto, ...); +void pl_text_out16(int x, int y, const char *texto, ...); + +struct rearmed_cbs { + void (*pl_get_layer_pos)(int *x, int *y, int *w, int *h); + int (*pl_fbdev_open)(void); + void *(*pl_fbdev_set_mode)(int w, int h, int bpp); + void *(*pl_fbdev_flip)(void); + void (*pl_fbdev_close)(void); + int *fskip_option; +}; + +extern const struct rearmed_cbs pl_rearmed_cbs; #ifndef ARRAY_SIZE #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))