X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=22ab285ba09b0ab7850b70a30f1ca233a63971db;hp=02a6240b6afc09f33b70eeda438fa72e9c148ef5;hb=bce6b05695beb988b607eb1dd82c27c1ed841faa;hpb=69af03a2c2fccc06cb836f42a10b490a48f29c15 diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index 02a6240b..22ab285b 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -21,9 +21,26 @@ enum { extern void *pl_fbdev_buf; -int pl_fbdev_init(void); -int pl_fbdev_set_mode(int w, int h, int bpp); +int pl_fbdev_open(void); +void *pl_fbdev_set_mode(int w, int h, int bpp); void *pl_fbdev_flip(void); -void pl_fbdev_finish(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; + +extern int pl_frame_interval; + +#ifndef ARRAY_SIZE +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) +#endif