| 65 | typedef LONG KPRIORITY; |
| 66 | |
| 67 | typedef struct _PROCESS_BASIC_INFORMATION { |
| 68 | NTSTATUS ExitStatus; |
| 69 | PPEB PebBaseAddress; |
| 70 | ULONG_PTR AffinityMask; |
| 71 | KPRIORITY BasePriority; |
| 72 | ULONG_PTR UniqueProcessId; |
| 73 | ULONG_PTR InheritedFromUniqueProcessId; |
| 74 | } PROCESS_BASIC_INFORMATION, * PPROCESS_BASIC_INFORMATION; |
| 75 | |
| 76 | typedef NTSTATUS(NTAPI* NtQueryInformationProcess)( |
| 77 | IN HANDLE ProcessHandle, |
nothing calls this directly
no outgoing calls
no test coverage detected