#ifndef _NTRTL_H
#if (PHNT_VERSION >= PHNT_REDSTONE3)
// rev
NTSYSAPI
BOOLEAN
NTAPI
RtlIsCurrentProcess( // NtCompareObjects(NtCurrentProcess(), ProcessHandle)
_In_ HANDLE ProcessHandle
);
View code on GitHub
Determines whether the specified handle is a handle to the current process.
ProcessHandle
- a process handle. The handle does not need to grant any specific access mask.This function is a wrapper over NtCompareObjects
.
This functionality is not exposed in Win32 API.