[SDK:NT] Improve ntdef.h and add guiddef.h

This commit is contained in:
2024-08-09 08:32:31 -04:00
parent 7af18b7ac3
commit 0998d5c417
2 changed files with 124 additions and 48 deletions

29
SDK/INC/NT/guiddef.h Normal file
View File

@@ -0,0 +1,29 @@
/*++
Copyright (c) 2024, Quinn Stephens.
Provided under the BSD 3-Clause license.
Module Name:
guiddef.h
Abstract:
Provides GUID definitions.
--*/
#ifndef _GUIDDEF_H
#define _GUIDDEF_H
#ifndef GUID_DEFINED
#define GUID_DEFINED
typedef struct _GUID {
ULONG Data1;
USHORT Data2;
USHORT Data3;
UCHAR Data4[8];
} GUID;
#endif
#endif /* !_GUIDDEF_H */