Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/hid/hid.cpp
2024-09-30 13:45:09 +06:00

23 lines
368 B
C++

#include <stdafx.h>
#include "hid.h"
DWORD hid::GetState(DWORD dwUserIndex, XAMINPUT_STATE* pState)
{
return 1;
}
DWORD hid::SetState(DWORD dwUserIndex, XAMINPUT_VIBRATION* pVibration)
{
return 1;
}
DWORD hid::GetCapabilities(DWORD dwUserIndex, XAMINPUT_CAPABILITIES* pCaps)
{
return 1;
}
int hid::OnSDLEvent(void*, SDL_Event* event)
{
return 0;
}