mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:PS] NtQueryInformationProcess(): Sync' annotations
This commit is contained in:
parent
91dc5eac7d
commit
c0961cac10
1 changed files with 6 additions and 5 deletions
|
@ -56,11 +56,12 @@ PsReferenceProcessFilePointer(IN PEPROCESS Process,
|
|||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
||||
IN PROCESSINFOCLASS ProcessInformationClass,
|
||||
OUT PVOID ProcessInformation,
|
||||
IN ULONG ProcessInformationLength,
|
||||
OUT PULONG ReturnLength OPTIONAL)
|
||||
NtQueryInformationProcess(
|
||||
_In_ HANDLE ProcessHandle,
|
||||
_In_ PROCESSINFOCLASS ProcessInformationClass,
|
||||
_Out_ PVOID ProcessInformation,
|
||||
_In_ ULONG ProcessInformationLength,
|
||||
_Out_opt_ PULONG ReturnLength)
|
||||
{
|
||||
PEPROCESS Process;
|
||||
KPROCESSOR_MODE PreviousMode = ExGetPreviousMode();
|
||||
|
|
Loading…
Reference in a new issue