Define PVOID64 and FILE_SEGMENT_ELEMENT.
This commit is contained in:
parent
6212477ea4
commit
526daeafd4
|
@ -296,6 +296,7 @@
|
|||
#define VOID void
|
||||
#endif
|
||||
typedef VOID *PVOID;
|
||||
typedef VOID *PVOID64;
|
||||
typedef BYTE BOOLEAN, *PBOOLEAN;
|
||||
typedef char CHAR, *PCHAR;
|
||||
typedef short SHORT, *PSHORT;
|
||||
|
@ -3576,6 +3577,11 @@ typedef struct _SYSTEM_POWER_POLICY {
|
|||
} SYSTEM_POWER_POLICY,
|
||||
*PSYSTEM_POWER_POLICY;
|
||||
|
||||
typedef union _FILE_SEGMENT_ELEMENT {
|
||||
PVOID64 Buffer;
|
||||
ULONGLONG Alignment;
|
||||
} FILE_SEGMENT_ELEMENT, *PFILE_SEGMENT_ELEMENT;
|
||||
|
||||
/* ----------------------------- begin registry ----------------------------- */
|
||||
|
||||
/* Registry security values */
|
||||
|
|
Loading…
Reference in New Issue