mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-21 07:22:21 +00:00
23 lines
506 B
C++
23 lines
506 B
C++
#include <stdafx.h>
|
|
#include "hid.h"
|
|
#include "hid_detail.h"
|
|
|
|
void hid::Init()
|
|
{
|
|
detail::Init();
|
|
}
|
|
|
|
uint32_t hid::GetState(uint32_t dwUserIndex, XAMINPUT_STATE* pState)
|
|
{
|
|
return detail::GetState(dwUserIndex, pState);
|
|
}
|
|
|
|
uint32_t hid::SetState(uint32_t dwUserIndex, XAMINPUT_VIBRATION* pVibration)
|
|
{
|
|
return detail::SetState(dwUserIndex, pVibration);
|
|
}
|
|
|
|
uint32_t hid::GetCapabilities(uint32_t dwUserIndex, XAMINPUT_CAPABILITIES* pCaps)
|
|
{
|
|
return detail::GetCapabilities(dwUserIndex, pCaps);
|
|
}
|