X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.h;h=56e1e735c5a1ec7c182ad775171e05f0ddae472c;hp=ffed68b4c62e752e87854a8a0a9ee26766970181;hb=d81b8e972678928ffece2d38213de8048f5e872d;hpb=33400707ded1b72c10c7ed70f925066aeae86f45 diff --git a/frontend/main.h b/frontend/main.h index ffed68b4..56e1e735 100644 --- a/frontend/main.h +++ b/frontend/main.h @@ -35,7 +35,15 @@ extern char cfgfile_basename[MAXPATHLEN]; extern int state_slot; + +/* emu_core_preinit - must be the very first call + * emu_core_init - to be called after platform-specific setup */ +int emu_core_preinit(void); +int emu_core_init(void); + void emu_set_default_config(void); +void emu_on_new_cd(void); + int get_state_filename(char *buf, int size, int i); int emu_check_state(int slot); int emu_save_state(int slot); @@ -57,7 +65,11 @@ enum sched_action { SACTION_NEXT_SSLOT, SACTION_PREV_SSLOT, SACTION_TOGGLE_FSKIP, + SACTION_TOGGLE_RENDERER, SACTION_SCREENSHOT, + SACTION_VOLUME_UP, + SACTION_VOLUME_DOWN, + SACTION_MINIMIZE, SACTION_GUN_TRIGGER = 16, SACTION_GUN_A, SACTION_GUN_B,