mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-14 23:56:29 +00:00
UWP support
This commit is contained in:
26
lib/inputdev/HIDListenerUWP.cpp
Normal file
26
lib/inputdev/HIDListenerUWP.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#define _CRT_SECURE_NO_WARNINGS 1 /* STFU MSVC */
|
||||
#include "boo/inputdev/IHIDListener.hpp"
|
||||
#include "boo/inputdev/DeviceFinder.hpp"
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
||||
class HIDListenerUWP : public IHIDListener
|
||||
{
|
||||
public:
|
||||
HIDListenerUWP(DeviceFinder& finder) {}
|
||||
|
||||
/* Automatic device scanning */
|
||||
bool startScanning() { return false; }
|
||||
bool stopScanning() { return false; }
|
||||
|
||||
/* Manual device scanning */
|
||||
bool scanNow() { return false; }
|
||||
};
|
||||
|
||||
std::unique_ptr<IHIDListener> IHIDListenerNew(DeviceFinder& finder)
|
||||
{
|
||||
return std::make_unique<HIDListenerUWP>(finder);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user