UnleashedRecomp/UnleashedRecomp/hid/hid.cpp
2024-10-01 15:12:12 +06:00

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);
}