Add dispatcher object header definition
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-02-15 22:49:59 +01:00
parent 9ea1be96db
commit 785c515e36
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -75,4 +75,15 @@ typedef struct _M128
LONGLONG High;
} ALIGN(16) M128, *PM128;
/* Dispatcher object header structure definition */
typedef struct _DISPATCHER_HEADER
{
UCHAR Type;
UCHAR Absolute;
UCHAR Inserted;
BOOLEAN DebugActive;
LONG SignalState;
LIST_ENTRY WaitListHead;
} DISPATCHER_HEADER, *PDISPATCHER_HEADER;
#endif /* __XTDK_XTBASE_H */