ref: d0b8aef2818da7c59b7c8ac1178f7fca8bfc7523
dir: /src/Input.cpp/
#include "Input.h"
#include "Backends/Controller.h"
#include "WindowsWrapper.h"
void ReleaseDirectInput(void)
{
ControllerBackend_Deinit();
}
BOOL InitDirectInput(void)
{
return ControllerBackend_Init();
}
BOOL GetJoystickStatus(JOYSTICK_STATUS *status)
{
return ControllerBackend_GetJoystickStatus(status);
}
BOOL ResetJoystickStatus(void)
{
return ControllerBackend_ResetJoystickStatus();
}