#ifndef _NTRTL_H
#if (PHNT_VERSION >= PHNT_WINDOWS_10)
// rev
/**
* The RtlDecodeRemotePointer routine decodes a pointer in a specified process that was previously
* encoded with RtlEncodePointer or RtlEncodeRemotePointer.
*
* \param ProcessHandle Handle to the remote process that owns the pointer.
* \param Pointer The pointer to be decoded.
* \param DecodedPointer The decoded pointer.
* \return HRESULT Successful or errant status.
* \sa https://learn.microsoft.com/en-us/previous-versions/dn877133(v=vs.85)
*/
NTSYSAPI
HRESULT
NTAPI
RtlDecodeRemotePointer(
_In_ HANDLE ProcessHandle,
_In_opt_ PVOID Pointer,
_Out_ PVOID *DecodedPointer
);
View code on GitHub
No description available.