more unification; replace some magic bits to defines
[picodrive.git] / platform / common / plat.h
CommitLineData
1fb0dd88 1#ifdef __cplusplus
2extern "C" {
3#endif
4
713c9224 5/* stuff to be implemented by platform code */
42171343 6extern char cpu_clk_name[];
713c9224 7/* TODO rename all these */
8extern const char * const keyNames[]; // TODO rm
1fb0dd88 9void emu_prepareDefaultConfig(void);
10void emu_platformDebugCat(char *str);
11void emu_forcedFrame(int opts);
12void emu_startSound(void);
13void emu_endSound(void);
14void emu_waitSound(void);
713c9224 15void emu_ResetGame(void); // TODO mv rm?
bcd94522 16void emu_Init(void);
17void emu_Deinit(void);
18void emu_Loop(void);
713c9224 19
713c9224 20int emu_getMainDir(char *dst, int len);
21void menu_romload_prepare(const char *rom_name);
22void menu_romload_end(void);
1fb0dd88 23
ee2a3bdf 24void plat_early_init(void);
42171343 25void plat_init(void);
26void plat_finish(void);
27
d34a42f9 28/* to be used while emulation is starting or running */
29void plat_status_msg(const char *format, ...);
30
31/* used before things blocking for a while (these funcs redraw on return) */
32void plat_status_msg_busy_first(const char *msg);
33void plat_status_msg_busy_next(const char *msg);
34
1fb0dd88 35/* menu: enter (switch bpp, etc), begin/end drawing */
36void plat_video_menu_enter(int is_rom_loaded);
37void plat_video_menu_begin(void);
38void plat_video_menu_end(void);
39
d34a42f9 40void plat_video_toggle_renderer(void);
ee2a3bdf 41void plat_validate_config(void);
d34a42f9 42void plat_update_volume(int has_changed, int is_up);
ee2a3bdf 43
713c9224 44int plat_is_dir(const char *path);
0403eead 45int plat_wait_event(int *fds_hnds, int count, int timeout_ms);
46void plat_sleep_ms(int ms);
713c9224 47
0403eead 48/* ms counter, to be used for time diff */
49unsigned int plat_get_ticks_ms(void);
50
51const char *plat_get_credits(void);
713c9224 52
1fb0dd88 53#ifdef __cplusplus
54} // extern "C"
55#endif
56