initial udev implementation for linux-hosted hid devices

This commit is contained in:
Jack Andersen
2015-04-28 21:56:16 -10:00
parent cf0eaad388
commit 8442c492d4
7 changed files with 364 additions and 13 deletions

View File

@@ -4,6 +4,7 @@
#else
#endif
#include <stdio.h>
#include <unistd.h>
#include <boo.hpp>
class CDolphinSmashAdapterCallback : public IDolphinSmashAdapterCallback
@@ -61,6 +62,7 @@ int main(int argc, char** argv)
#if __APPLE__
CFRunLoopRun();
#else
while (true) {sleep(1);}
#endif
delete ctx;

View File

@@ -1,2 +1,4 @@
SOURCES += \
$$PWD/main.cpp
$$PWD/main.cpp
CONFIG += c++11