WritePointer - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdbgexts.h

ULONG WritePointer(
  ULONG64 Address,
  ULONG64 Pointer
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdbgexts-writepointer)

WritePointer function

Description

The WritePointer function writes a pointer to the target.

Parameters

Address

Specifies the address to write the pointer to.

Pointer

Specifies the value of the pointer. If the target uses 32-bit pointers, Pointer is a 32-bit value that has been sign-extended to 64-bits.

Return value

If the function succeeds, the return value is TRUE; otherwise, it is FALSE.

Remarks

For a WdbgExts extension, include wdbgexts.h. For a DbgEng extension, include wdbgexts.h before dbgeng.h. See Writing DbgEng Extension Code for details.

See also

ReadPointer