ref: da46ff8746fae883e214b722516d3e4f8f36dae9
dir: /src/Input.h/
#pragma once #include "WindowsWrapper.h" extern BOOL gbUseJoystick; extern int gJoystickButtonTable[8]; struct JOYSTICK_STATUS { BOOL bLeft; BOOL bRight; BOOL bUp; BOOL bDown; BOOL bButton[32]; }; void ReleaseDirectInput(void); BOOL InitDirectInput(HINSTANCE hinst, HWND hWnd); BOOL GetJoystickStatus(BOOL *buttons); BOOL ResetJoystickStatus(void);