unified menu wip and some reorganization for it
[libpicofe.git] / common / plat.h
1 /* stuff to be implemented by platform code */
2
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 extern const char * const keyNames[];
8 void  emu_prepareDefaultConfig(void);
9 void  emu_platformDebugCat(char *str);
10 void  emu_forcedFrame(int opts);
11 void  emu_startSound(void);
12 void  emu_endSound(void);
13 void  emu_waitSound(void);
14
15 /* menu: enter (switch bpp, etc), begin/end drawing */
16 void plat_video_menu_enter(int is_rom_loaded);
17 void plat_video_menu_begin(void);
18 void plat_video_menu_end(void);
19
20 #ifdef __cplusplus
21 } // extern "C"
22 #endif
23