WDF_IO_TYPE_CONFIG_INIT - NtDoc

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

VOID WDF_IO_TYPE_CONFIG_INIT(
  [out] PWDF_IO_TYPE_CONFIG IoTypeConfig
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfdevice-wdf_io_type_config_init)

WDF_IO_TYPE_CONFIG_INIT function

Description

[Applies to KMDF and UMDF]

The WDF_IO_TYPE_CONFIG_INIT function initializes a driver's WDF_IO_TYPE_CONFIG structure.

Parameters

IoTypeConfig [out]

A pointer to a driver-allocated WDF_IO_TYPE_CONFIG structure.

Remarks

The WDF_IO_TYPE_CONFIG_INIT function zeros the specified WDF_IO_TYPE_CONFIG structure and sets the structure's Size member. It then sets the ReadWriteIoType member to WdfDeviceIoBuffered, and the DeviceControlIoType member to WdfDeviceIoBuffered.

Examples

For a code example that uses WDF_IO_TYPE_CONFIG_INIT, see WdfDeviceInitSetIoTypeEx.

See also

WDF_IO_TYPE_CONFIG

WdfDeviceInitSetIoTypeEx