mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-11 16:46:16 +00:00
17 lines
221 B
C++
17 lines
221 B
C++
#pragma once
|
|
|
|
typedef enum _EVENT_TYPE
|
|
{
|
|
NotificationEvent,
|
|
SynchronizationEvent
|
|
} EVENT_TYPE;
|
|
|
|
typedef enum _WAIT_TYPE
|
|
{
|
|
WaitAll,
|
|
WaitAny,
|
|
WaitNotification,
|
|
WaitDequeue,
|
|
WaitDpc,
|
|
} WAIT_TYPE;
|