X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=7a25b817473c07e4e7b2bff563b070e40581a06a;hb=7c49c8a2a0cd00c453425b0f88c7b117223c92f4;hp=cfb9bd10a4983c419ee5c3cfa958894ca6103f47;hpb=722285599b1ce45ca435f484b0f34a5e568487a1;p=pcsx_rearmed.git diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index cfb9bd10..7a25b817 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -21,9 +21,23 @@ enum { extern void *pl_fbdev_buf; -int pl_fbdev_init(void); +int pl_fbdev_open(void); int pl_fbdev_set_mode(int w, int h, int bpp); -void pl_fbdev_flip(void); -void pl_fbdev_finish(void); +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); + int (*pl_fbdev_set_mode)(int w, int h, int bpp); + void *(*pl_fbdev_flip)(void); + void (*pl_fbdev_close)(void); +}; + +extern const struct rearmed_cbs pl_rearmed_cbs; + +#ifndef ARRAY_SIZE +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) +#endif