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