X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat.h;h=6b0cd65b26ed5bef957cb4d1080c5114c713ac4d;hp=db66c57ffb8ae3779c2407a65b5bc7864299108b;hb=HEAD;hpb=ab423939f0af46542bb23000e77a30976c8c2335 diff --git a/frontend/plat.h b/frontend/plat.h index db66c57f..8a296ea4 100644 --- a/frontend/plat.h +++ b/frontend/plat.h @@ -1,12 +1,15 @@ +#ifndef __PLAT_H__ +#define __PLAT_H__ + +void plat_init(void); +void plat_finish(void); void plat_minimize(void); void *plat_prepare_screenshot(int *w, int *h, int *bpp); -void plat_step_volume(int is_up); -int plat_cpu_clock_get(void); -int plat_cpu_clock_apply(int cpu_clock); -int plat_get_bat_capacity(void); // indirectly called from GPU plugin void plat_gvideo_open(int is_pal); void *plat_gvideo_set_mode(int *w, int *h, int *bpp); void *plat_gvideo_flip(void); void plat_gvideo_close(void); + +#endif /* __PLAT_H__ */