| Index: sandbox/win/src/nt_internals.h
|
| ===================================================================
|
| --- sandbox/win/src/nt_internals.h (revision 154997)
|
| +++ sandbox/win/src/nt_internals.h (working copy)
|
| @@ -292,7 +292,8 @@
|
|
|
| // Partial definition only:
|
| typedef enum _PROCESSINFOCLASS {
|
| - ProcessBasicInformation = 0
|
| + ProcessBasicInformation = 0,
|
| + ProcessExecuteFlags = 0x22
|
| } PROCESSINFOCLASS;
|
|
|
| typedef PVOID PPEB;
|
| @@ -314,6 +315,12 @@
|
| IN ULONG ProcessInformationLength,
|
| OUT PULONG ReturnLength OPTIONAL);
|
|
|
| +typedef NTSTATUS (WINAPI *NtSetInformationProcessFunction)(
|
| + HANDLE ProcessHandle,
|
| + IN PROCESSINFOCLASS ProcessInformationClass,
|
| + IN PVOID ProcessInformation,
|
| + IN ULONG ProcessInformationLength);
|
| +
|
| typedef NTSTATUS (WINAPI *NtOpenThreadTokenFunction) (
|
| IN HANDLE ThreadHandle,
|
| IN ACCESS_MASK DesiredAccess,
|
|
|