// wdbgexts.h
ULONG ReadPointer(
ULONG64 Address,
PULONG64 Pointer
);
View the official Windows Driver Kit DDI referenceNo description available.
The ReadPointer function reads a pointer from the target.
AddressSpecifies the address of the pointer to read.
PointerReceives the value of the pointer. If the target uses 32-bit pointers, the pointer is sign-extended to 64 bits.
If the function succeeds, the return value is TRUE; otherwise, it is FALSE.
If you are writing a WdbgExts extension, include wdbgexts.h. If you are writing a DbgEng extension that calls this function, include wdbgexts.h before dbgeng.h (see Writing DbgEng Extension Code for details).