mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
14 lines
346 B
C++
14 lines
346 B
C++
#pragma once
|
|
|
|
union SDL_Event;
|
|
|
|
namespace hid
|
|
{
|
|
void Init();
|
|
void SetProhibitedButtons(uint16_t wButtons);
|
|
|
|
uint32_t GetState(uint32_t dwUserIndex, XAMINPUT_STATE* pState);
|
|
uint32_t SetState(uint32_t dwUserIndex, XAMINPUT_VIBRATION* pVibration);
|
|
uint32_t GetCapabilities(uint32_t dwUserIndex, XAMINPUT_CAPABILITIES* pCaps);
|
|
}
|