Share via


KD_IOCTL_CLEAR_DBP (Compact 2013)

10/16/2014

This I/O control message clears a hardware data breakpoint. The kernel debugger sends this message with OEMKDIoctl.

Syntax

BOOL OEMKDIoControl(
    DWORD dwIoControlCode,   // use KD_IOCTL_CLEAR_DBP
    LPVOID lpInBuffer,       // pointer to input buffer
    DWORD nInBufferSize      // input buffer size
);

Parameters

  • dwIoControlCode
    [in] Control code for the operation. Use KD_IOCTL_CLEAR_DBP for this operation.
  • lpInBuffer
    [in] Pointer to a KD_BPINFO structure. The ulHandle member contains the handle to the breakpoint to clear.
  • nInBufferSize
    [in] Size of the buffer pointed to by lpInBuffer.

Return Values

TRUE if successful; otherwise, FALSE.

Requirements

Header

pkfuncs.h

See Also

Reference

Kernel Debugger IOCTLs
OEMKDIoctl