mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +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
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
NtQueryInformationProcess(
|
||||||
IN PROCESSINFOCLASS ProcessInformationClass,
|
_In_ HANDLE ProcessHandle,
|
||||||
OUT PVOID ProcessInformation,
|
_In_ PROCESSINFOCLASS ProcessInformationClass,
|
||||||
IN ULONG ProcessInformationLength,
|
_Out_ PVOID ProcessInformation,
|
||||||
OUT PULONG ReturnLength OPTIONAL)
|
_In_ ULONG ProcessInformationLength,
|
||||||
|
_Out_opt_ PULONG ReturnLength)
|
||||||
{
|
{
|
||||||
PEPROCESS Process;
|
PEPROCESS Process;
|
||||||
KPROCESSOR_MODE PreviousMode = ExGetPreviousMode();
|
KPROCESSOR_MODE PreviousMode = ExGetPreviousMode();
|
||||||
|
|
Loading…
Reference in a new issue