boo/lib/inputdev/HIDDeviceUWP.cpp

25 lines
942 B
C++
Raw Normal View History

2017-12-06 03:20:59 +00:00
#define _CRT_SECURE_NO_WARNINGS 1 /* STFU MSVC */
#include "IHIDDevice.hpp"
#include "boo/inputdev/DeviceToken.hpp"
#include "boo/inputdev/DeviceBase.hpp"
2018-12-08 05:17:51 +00:00
namespace boo {
2017-12-06 03:20:59 +00:00
2018-12-08 05:17:51 +00:00
class HIDDeviceUWP : public IHIDDevice {
2017-12-06 03:20:59 +00:00
public:
2018-12-08 05:17:51 +00:00
HIDDeviceUWP(DeviceToken& token, const std::shared_ptr<DeviceBase>& devImp) {}
2017-12-06 03:20:59 +00:00
2018-12-08 05:17:51 +00:00
void _deviceDisconnected() {}
bool _sendUSBInterruptTransfer(const uint8_t* data, size_t length) { return false; }
size_t _receiveUSBInterruptTransfer(uint8_t* data, size_t length) { return 0; }
bool _sendHIDReport(const uint8_t* data, size_t length, HIDReportType tp, uint32_t message) { return false; }
size_t _receiveHIDReport(uint8_t* data, size_t length, HIDReportType tp, uint32_t message) { return false; }
void _startThread() {}
2017-12-06 03:20:59 +00:00
};
2018-12-08 05:17:51 +00:00
std::shared_ptr<IHIDDevice> IHIDDeviceNew(DeviceToken& token, const std::shared_ptr<DeviceBase>& devImp) {
return std::make_shared<HIDDeviceUWP>(token, devImp);
2017-12-06 03:20:59 +00:00
}
2018-12-08 05:17:51 +00:00
} // namespace boo