diff options
Diffstat (limited to 'cthread.c')
-rw-r--r-- | cthread.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -5,6 +5,10 @@ #include "cusb.h" #include "cphidgetlist.h" +#if defined(_MACOSX) && !defined(_IPHONE) +#include "macusb.h" +#endif + CThread_func_return_t CentralThreadFunction(CThread_func_arg_t arg); static CThread CentralThread; @@ -112,7 +116,7 @@ JoinCentralThread() } /* - * registers a device to recieve events and be polled by the central + * registers a device to receive events and be polled by the central * thread This needs to start the central thread if it's not yet * running. */ |