5 /* stuff to be implemented by platform code */
6 extern char cpu_clk_name[];
8 void pemu_prep_defconfig(void);
10 void pemu_forced_frame(int opts);
11 void pemu_sound_start(void);
12 void pemu_sound_stop(void);
13 void pemu_sound_wait(void);
15 void menu_romload_prepare(const char *rom_name);
16 void menu_romload_end(void);
18 void plat_early_init(void);
20 void plat_finish(void);
22 /* return the dir/ where configs, saves, bios, etc. are found */
23 int plat_get_root_dir(char *dst, int len);
25 /* to be used while emulation is starting or running */
26 void plat_status_msg(const char *format, ...);
28 /* used before things blocking for a while (these funcs redraw on return) */
29 void plat_status_msg_busy_first(const char *msg);
30 void plat_status_msg_busy_next(const char *msg);
32 /* menu: enter (switch bpp, etc), begin/end drawing */
33 void plat_video_menu_enter(int is_rom_loaded);
34 void plat_video_menu_begin(void);
35 void plat_video_menu_end(void);
37 void plat_video_toggle_renderer(int is_next, int is_menu);
38 void plat_validate_config(void);
39 void plat_update_volume(int has_changed, int is_up);
41 int plat_is_dir(const char *path);
42 int plat_wait_event(int *fds_hnds, int count, int timeout_ms);
43 void plat_sleep_ms(int ms);
45 /* ms counter, to be used for time diff */
46 unsigned int plat_get_ticks_ms(void);
48 const char *plat_get_credits(void);
49 void plat_debug_cat(char *str);