X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.h;h=bdb4870259a1dde9d10a3c6377d3a5d6755f0b7c;hp=eadb3c6e208d4cee3bc87a99d0568a88350c0bd0;hb=7d5140f5d608cfe3f69cc4d75e78c8c2b30b7d1a;hpb=29a8c4f3e7fee7678e4b18de1748b9c4255dcef2 diff --git a/frontend/main.h b/frontend/main.h index eadb3c6e..bdb48702 100644 --- a/frontend/main.h +++ b/frontend/main.h @@ -35,6 +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,8 +66,17 @@ enum sched_action { SACTION_PREV_SSLOT, SACTION_TOGGLE_FSKIP, SACTION_SCREENSHOT, + SACTION_VOLUME_UP, + SACTION_VOLUME_DOWN, + SACTION_MINIMIZE, + SACTION_GUN_TRIGGER = 16, + SACTION_GUN_A, + SACTION_GUN_B, + SACTION_GUN_TRIGGER2, }; +#define SACTION_GUN_MASK (0x0f << SACTION_GUN_TRIGGER) + static inline void emu_set_action(enum sched_action action_) { extern enum sched_action emu_action, emu_action_old;