Share via


KD_IOCTL_DMPGEN_END (Compact 2013)

10/16/2014

This I/O control message indicates to the OEM that the error report dump generation has ended which KD_IOCTL_DMPGEN_START previously indicated. The kernel debugger sends this message with OEMKDIoctl.

Syntax

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

Parameters

  • dwIoControlCode
    [in] Control code for the operation. Use KD_IOCTL_DMPGEN_END for this operation.
  • lpInBuffer
    [in] Set to NULL.
  • nInBufferSize
    [in] HRESULT of the dump generation.

Return Values

Ignored.

Requirements

Header

pkfuncs.h

See Also

Reference

Kernel Debugger IOCTLs
OEMKDIoctl