From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/parsec/include/inp_subh.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/parsec/include/inp_subh.h (limited to 'src/parsec/include/inp_subh.h') diff --git a/src/parsec/include/inp_subh.h b/src/parsec/include/inp_subh.h new file mode 100644 index 0000000..64a5d00 --- /dev/null +++ b/src/parsec/include/inp_subh.h @@ -0,0 +1,36 @@ +/* + * PARSEC HEADER: inp_subh.h + */ + +#ifndef _INP_SUBH_H_ +#define _INP_SUBH_H_ + + +// ---------------------------------------------------------------------------- +// INPUT SUBSYSTEM (INP) system-dependent function declarations - +// ---------------------------------------------------------------------------- + +void INPs_InitGeneral(); +void INPs_KillGeneral(); + +void INPs_KeybInitHandler(); +void INPs_KeybKillHandler(); + +void INPs_JoyInitHandler(); +void INPs_JoyKillHandler(); + +void INPs_MouseInitHandler(); +void INPs_MouseKillHandler(); +int INPs_MouseSetState( mousestate_s *state ); +int INPs_MouseGetState( mousestate_s *state ); + + +int INPs_ActivateGun(); +int INPs_ActivateMissile(); + +void INPs_Collect(); +void INPs_UserProcessAuxInput(); + +#endif // _INP_SUBH_H_ + + -- cgit v1.2.3