#ifndef _NTRTL_H
/**
* Encodes the specified pointer with a system-specific value. Encoded pointers can be used to provide another layer of protection for pointer values.
*
* @param Ptr The system pointer to be encoded.
* @return The function returns the encoded pointer.
* @sa https://learn.microsoft.com/en-us/previous-versions/bb432255(v=vs.85)
*/
NTSYSAPI
PVOID
NTAPI
RtlEncodeSystemPointer(
_In_ PVOID Ptr
);
View code on GitHub
No description available.