ref: 1b64bb71b7d7a6e6035b005a25d4db53ee863562
dir: /src/Input.h/
#pragma once #include "WindowsWrapper.h" 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(JOYSTICK_STATUS *status); BOOL ResetJoystickStatus(void);