// wdbgexts.h
PWINDBG_DISASM PwindbgDisasm;
ULONG PwindbgDisasm(
ULONG_PTR *lpOffset,
PCSTR lpBuffer,
ULONG fShowEffectiveAddress
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PWINDBG_DISASM (Disasm) function disassembles the instruction pointed to by lpOffset and places the printable string into lpBuffer.
lpOffsetPoints to the instruction to be disassembled.
lpBufferReceives the disassembled instruction. This buffer must be at least 2000 characters in length.
fShowEffectiveAddressSpecifies whether or not to print the effective address.
If the routine succeeds, the return value is TRUE; otherwise, it is FALSE.