mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-07-29 18:43:38 +00:00
[c-host] tons of windows specific fixes
This commit is contained in:
parent
3f13485ced
commit
0cac3e1c40
16 changed files with 346 additions and 59 deletions
|
@ -76,6 +76,7 @@ typedef struct CaptureInterface
|
|||
const char * (*getName )();
|
||||
bool (*create )();
|
||||
bool (*init )(void * pointerShape, const unsigned int pointerSize);
|
||||
void (*stop )();
|
||||
bool (*deinit )();
|
||||
void (*free )();
|
||||
unsigned int (*getMaxFrameSize)();
|
||||
|
|
|
@ -47,5 +47,6 @@ typedef struct osEventHandle osEventHandle;
|
|||
osEventHandle * os_createEvent(bool autoReset);
|
||||
void os_freeEvent (osEventHandle * handle);
|
||||
bool os_waitEvent (osEventHandle * handle, unsigned int timeout);
|
||||
bool os_waitEvents (osEventHandle * handles[], int count, bool waitAll, unsigned int timeout);
|
||||
bool os_signalEvent(osEventHandle * handle);
|
||||
bool os_resetEvent (osEventHandle * handle);
|
Loading…
Add table
Add a link
Reference in a new issue