ref: dc0f242f251e59fd2bebf2a1c4dd7a8dc2677f5d
dir: /src/Input.h/
#pragma once 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();