mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-05-30 08:57:06 -04:00
13 lines
322 B
C++
13 lines
322 B
C++
#pragma once
|
|
|
|
union SDL_Event;
|
|
namespace hid
|
|
{
|
|
void Init();
|
|
DWORD GetState(DWORD dwUserIndex, XAMINPUT_STATE* pState);
|
|
DWORD SetState(DWORD dwUserIndex, XAMINPUT_VIBRATION* pVibration);
|
|
|
|
DWORD GetCapabilities(DWORD dwUserIndex, XAMINPUT_CAPABILITIES* pCaps);
|
|
|
|
int OnSDLEvent(void*, SDL_Event* event);
|
|
} |