libpicofe/common/plat.h
notaz 24b24674ae unified menu wip and some reorganization for it
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@638 be3aeb3a-fb24-0410-a615-afba39da0efa
2009-02-22 22:58:59 +00:00

23 lines
530 B
C

/* stuff to be implemented by platform code */
#ifdef __cplusplus
extern "C" {
#endif
extern const char * const keyNames[];
void emu_prepareDefaultConfig(void);
void emu_platformDebugCat(char *str);
void emu_forcedFrame(int opts);
void emu_startSound(void);
void emu_endSound(void);
void emu_waitSound(void);
/* menu: enter (switch bpp, etc), begin/end drawing */
void plat_video_menu_enter(int is_rom_loaded);
void plat_video_menu_begin(void);
void plat_video_menu_end(void);
#ifdef __cplusplus
} // extern "C"
#endif