Define system-wide GUID structure

This commit is contained in:
2022-08-22 18:31:04 +02:00
parent d9b60aaa11
commit 6d135ce209
2 changed files with 10 additions and 0 deletions

View File

@@ -13,6 +13,15 @@
#include "xtstruct.h"
/* 128-bit buffer containing a unique identifier value */
typedef struct _GUID
{
UINT Data1;
USHORT Data2;
USHORT Data3;
UCHAR Data4[8];
} GUID, *PGUID;
/* Double linked list structure definition */
typedef struct _LIST_ENTRY
{