cdrom: change pause timing again
[pcsx_rearmed.git] / frontend / plat.h
1 #ifndef __PLAT_H__
2 #define __PLAT_H__
3
4 void plat_init(void);
5 void plat_finish(void);
6 void plat_minimize(void);
7 void *plat_prepare_screenshot(int *w, int *h, int *bpp);
8
9 // indirectly called from GPU plugin
10 void  plat_gvideo_open(int is_pal);
11 void *plat_gvideo_set_mode(int *w, int *h, int *bpp);
12 void *plat_gvideo_flip(void);
13 void  plat_gvideo_close(void);
14
15 #endif /* __PLAT_H__ */