From 785c515e36dc648b1ccb09f85f3ee12dc2c37bce Mon Sep 17 00:00:00 2001 From: belliash Date: Wed, 15 Feb 2023 22:49:59 +0100 Subject: [PATCH] Add dispatcher object header definition --- sdk/xtdk/xtbase.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sdk/xtdk/xtbase.h b/sdk/xtdk/xtbase.h index 70bcf48..822431d 100644 --- a/sdk/xtdk/xtbase.h +++ b/sdk/xtdk/xtbase.h @@ -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 */