sh2 overclock and logging stuff, menu refactoring
[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[];
fcdefcf6 7extern const char *renderer_names[];
8extern const char *renderer_names32x[];
f2cf8472 9
10void pemu_prep_defconfig(void);
697746df 11void pemu_validate_config(void);
b24e0f6c 12void pemu_loop_prep(void);
13void pemu_loop_end(void);
f2cf8472 14void pemu_forced_frame(int opts);
d08e7326 15void pemu_finalize_frame(const char *fps, const char *notice_msg);
b24e0f6c 16
f2cf8472 17void pemu_sound_start(void);
18void pemu_sound_stop(void);
19void pemu_sound_wait(void);
20
ee2a3bdf 21void plat_early_init(void);
42171343 22void plat_init(void);
23void plat_finish(void);
24
f2cf8472 25/* return the dir/ where configs, saves, bios, etc. are found */
26int plat_get_root_dir(char *dst, int len);
27
d34a42f9 28/* used before things blocking for a while (these funcs redraw on return) */
29void plat_status_msg_busy_first(const char *msg);
30void plat_status_msg_busy_next(const char *msg);
b24e0f6c 31void plat_status_msg_clear(void);
d34a42f9 32
1fb0dd88 33/* menu: enter (switch bpp, etc), begin/end drawing */
34void plat_video_menu_enter(int is_rom_loaded);
35void plat_video_menu_begin(void);
36void plat_video_menu_end(void);
37
d08e7326 38void plat_video_flip(void);
b24e0f6c 39void plat_video_wait_vsync(void);
5a681086 40void plat_video_toggle_renderer(int change, int menu_call);
d08e7326 41
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
823b9004 48/* timers, to be used for time diff and must refer to the same clock */
b24e0f6c 49unsigned int plat_get_ticks_ms(void);
50unsigned int plat_get_ticks_us(void);
51void plat_wait_till_us(unsigned int us);
0403eead 52
b24e0f6c 53const char *plat_get_credits(void);
f2cf8472 54void plat_debug_cat(char *str);
713c9224 55
1fb0dd88 56#ifdef __cplusplus
57} // extern "C"
58#endif
59