X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.h;h=04489f65da572eccf8e9f2d18e53c1277df844f9;hp=9483798966e27c26b554a7bec520705826f9f281;hb=dde7da71ec95f2d83a9427bd381448438aa9201c;hpb=9c27c2051287b235fe0dba18a74b3863a3062646 diff --git a/frontend/main.h b/frontend/main.h index 94837989..04489f65 100644 --- a/frontend/main.h +++ b/frontend/main.h @@ -35,8 +35,14 @@ 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); +void emu_on_new_cd(int show_hud_msg); int get_state_filename(char *buf, int size, int i); int emu_check_state(int slot); @@ -59,10 +65,13 @@ enum sched_action { SACTION_NEXT_SSLOT, SACTION_PREV_SSLOT, SACTION_TOGGLE_FSKIP, + SACTION_SWITCH_DISPMODE, + SACTION_FAST_FORWARD, SACTION_SCREENSHOT, SACTION_VOLUME_UP, SACTION_VOLUME_DOWN, SACTION_MINIMIZE, + SACTION_TOGGLE_FPS, SACTION_GUN_TRIGGER = 16, SACTION_GUN_A, SACTION_GUN_B,