// wdfdevice.h
VOID WDF_IO_TYPE_CONFIG_INIT(
[out] PWDF_IO_TYPE_CONFIG IoTypeConfig
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_IO_TYPE_CONFIG_INIT function initializes a driver's WDF_IO_TYPE_CONFIG structure.
IoTypeConfig
[out]A pointer to a driver-allocated WDF_IO_TYPE_CONFIG structure.
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.
For a code example that uses WDF_IO_TYPE_CONFIG_INIT, see WdfDeviceInitSetIoTypeEx.