add watchdog thread to detect lockups
[pcsx_rearmed.git] / frontend / plugin_lib.h
index cfb9bd1..6b01cea 100644 (file)
@@ -21,9 +21,27 @@ enum {
 
 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);
+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);
 
-void  pl_text_out16(int x, int y, const char *texto, ...);
+void pl_text_out16(int x, int y, const char *texto, ...);
+void pl_start_watchdog(void);
+
+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