ref: 6a9f2cc1ff69d00699dd9f4db4ce1133774d39a0
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(); BOOL InitDirectInput(); BOOL GetJoystickStatus(JOYSTICK_STATUS *pStatus); BOOL ResetJoystickStatus();