// iddcx.h
struct IDARG_IN_ADAPTER_INIT {
WDFDEVICE WdfDevice;
IDDCX_ADAPTER_CAPS *pCaps;
PWDF_OBJECT_ATTRIBUTES ObjectAttributes;
};
View the official Windows Driver Kit DDI referenceNo description available.
The IDARG_IN_ADAPTER_INIT structure contains the information needed to initialize an adapter that will be hosted on a Windows Driver Framework (WDF) device.
WdfDeviceThe WDF object representing the device that will be hosting this WDDM adapter object.
pCapsPointer to an IDDCX_ADAPTER_CAPS structure containing information about the capabilities of the adapter.
ObjectAttributesPointer to a WDF_OBJECT_ATTRIBUTES structure containing object attributes used to initialize the WDF adapter object.
For more information about WDF objects, see Introduction to Framework Objects.