Share via


Ioctl (Compact 2013)

3/26/2014

This function is an entry point for much of the functionality provided by the extension functions for the kernel debugger.

Syntax

ULONG Ioctl(
  USHORT IoctlType,
  PVOID lpvData,
  ULONG cbSizeOfContext
);

Parameters

  • IoctlType
    [in] Type of Ioctl function call.
  • lpvData
    [in] Pointer to the address of a specific structure of a type specified by the IoctlType parameter.
  • cbSizeOfContext
    [in] Size of the structure that the lpvData parameter points to.

Return Value

The return values for this function vary depending on the type specified by the IoctlType parameter.

Requirements

Header

wdbgexts_ce.h

See Also

Reference

Debugger Extension Functions