mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-06 19:50:33 -06:00
23 lines
368 B
C++
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;
|
|
}
|