1fb0dd88 |
1 | #ifdef __cplusplus |
2 | extern "C" { |
3 | #endif |
4 | |
713c9224 |
5 | /* stuff to be implemented by platform code */ |
42171343 |
6 | extern char cpu_clk_name[]; |
f2cf8472 |
7 | |
8 | void pemu_prep_defconfig(void); |
b24e0f6c |
9 | void pemu_loop_prep(void); |
10 | void pemu_loop_end(void); |
f2cf8472 |
11 | void pemu_forced_frame(int opts); |
b24e0f6c |
12 | void pemu_video_mode_change(int is_32col, int is_240_lines); |
13 | void pemu_update_display(const char *fps, const char *notice_msg); |
14 | |
f2cf8472 |
15 | void pemu_sound_start(void); |
16 | void pemu_sound_stop(void); |
17 | void pemu_sound_wait(void); |
18 | |
713c9224 |
19 | void menu_romload_prepare(const char *rom_name); |
20 | void menu_romload_end(void); |
1fb0dd88 |
21 | |
ee2a3bdf |
22 | void plat_early_init(void); |
42171343 |
23 | void plat_init(void); |
24 | void plat_finish(void); |
25 | |
f2cf8472 |
26 | /* return the dir/ where configs, saves, bios, etc. are found */ |
27 | int plat_get_root_dir(char *dst, int len); |
28 | |
d34a42f9 |
29 | /* used before things blocking for a while (these funcs redraw on return) */ |
30 | void plat_status_msg_busy_first(const char *msg); |
31 | void plat_status_msg_busy_next(const char *msg); |
b24e0f6c |
32 | void plat_status_msg_clear(void); |
d34a42f9 |
33 | |
1fb0dd88 |
34 | /* menu: enter (switch bpp, etc), begin/end drawing */ |
35 | void plat_video_menu_enter(int is_rom_loaded); |
36 | void plat_video_menu_begin(void); |
37 | void plat_video_menu_end(void); |
38 | |
b24e0f6c |
39 | void plat_video_wait_vsync(void); |
d90f5bd7 |
40 | void plat_video_toggle_renderer(int is_next, int is_menu); |
ee2a3bdf |
41 | void plat_validate_config(void); |
d34a42f9 |
42 | void plat_update_volume(int has_changed, int is_up); |
ee2a3bdf |
43 | |
713c9224 |
44 | int plat_is_dir(const char *path); |
0403eead |
45 | int plat_wait_event(int *fds_hnds, int count, int timeout_ms); |
46 | void plat_sleep_ms(int ms); |
713c9224 |
47 | |
b24e0f6c |
48 | /* timers, to be used for time diff and must refet to the same clock */ |
49 | unsigned int plat_get_ticks_ms(void); |
50 | unsigned int plat_get_ticks_us(void); |
51 | void plat_wait_till_us(unsigned int us); |
0403eead |
52 | |
b24e0f6c |
53 | const char *plat_get_credits(void); |
f2cf8472 |
54 | void plat_debug_cat(char *str); |
713c9224 |
55 | |
1fb0dd88 |
56 | #ifdef __cplusplus |
57 | } // extern "C" |
58 | #endif |
59 | |