#ifndef _NTRTL_H
/**
* The RtlDecodePointer routine decodes a pointer that was previously encoded with RtlEncodePointer.
*
* \param Ptr The system pointer to be decoded.
* \return The function returns the decoded pointer.
* \sa https://learn.microsoft.com/en-us/previous-versions/bb432242(v=vs.85)
*/
_Ret_maybenull_
NTSYSAPI
PVOID
NTAPI
RtlDecodePointer(
_In_opt_ PVOID Ptr
);
View code on GitHub
No description available.