mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
unified menu wip and some reorganization for it
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@638 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
217d08bc39
commit
1fb0dd88aa
11 changed files with 487 additions and 115 deletions
23
platform/common/plat.h
Normal file
23
platform/common/plat.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/* 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue