// mbbcx.h
NTSTATUS MbbDeviceInitConfig(
PWDFDEVICE_INIT DeviceInit
);
View the official Windows Driver Kit DDI referenceNo description available.
The MBBDeviceInitConfig method initializes MBBCx device initialization operations when the Plug and Play (PnP) manager reports the existence of a device.
DeviceInitA pointer to a WDFDEVICE_INIT object that the client received in its EVT_WDF_DRIVER_DEVICE_ADD routine.
Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.
The client driver calls this method in its EVT_WDF_DRIVER_DEVICE_ADD callback after it calls NetDeviceInitConfig, but before it calls WdfDeviceCreate.
For more information, see Initialize the device.