Function

Description

BOOL _CreateEvent (_EVENT *pEvent);

BOOL _DestroyEvent (_EVENT *pEvent);

BOOL _WaitForEvent (_EVENT *pEvent, UINT32 timeout);

BOOL _ClearEvent (_EVENT *pEvent);

BOOL _SetEvent (_EVENT *pEvent);

Event objects:
Required functions for manual reset event signaling

 

 

BOOL _InitCriticalSection (_CRITICAL_SECTION *pCSection);

BOOL _ReleaseCriticalSection (_CRITICAL_SECTION *pCSection);

BOOL _EnterCriticalSection (_CRITICAL_SECTION *pCSection);

BOOL _LeaveCriticalSection (_CRITICAL_SECTION *pCSection);

Critical Section objects required functions

 

 

BOOL _CreateThread (unsigned _stdcall fct(void *), void *context, int priority, _THREAD *pThread);

BOOL _WaitForThread (_THREAD *pThread, UINT32 timeout);

Thread objects required functions:

 

 

 

 


Related Topics

Operating System Independence Wrapper