| Index: sandbox/win/src/nt_internals.h
|
| diff --git a/sandbox/win/src/nt_internals.h b/sandbox/win/src/nt_internals.h
|
| index 40b29c6beb3276415bf845b19deb9458bca08a21..95481c99cfe6c3c8de794e6f98d51f4eb7ade201 100644
|
| --- a/sandbox/win/src/nt_internals.h
|
| +++ b/sandbox/win/src/nt_internals.h
|
| @@ -311,12 +311,12 @@ typedef PVOID PPEB;
|
| typedef PVOID KPRIORITY;
|
|
|
| typedef struct _PROCESS_BASIC_INFORMATION {
|
| - NTSTATUS ExitStatus;
|
| + PVOID ExitStatus;
|
| PPEB PebBaseAddress;
|
| KAFFINITY AffinityMask;
|
| KPRIORITY BasePriority;
|
| - ULONG UniqueProcessId;
|
| - ULONG InheritedFromUniqueProcessId;
|
| + ULONG_PTR UniqueProcessId;
|
| + PVOID InheritedFromUniqueProcessId;
|
| } PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION;
|
|
|
| typedef NTSTATUS (WINAPI *NtQueryInformationProcessFunction)(
|
|
|