MbbDeviceInitConfig - NtDoc

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

NTSTATUS MbbDeviceInitConfig(
  PWDFDEVICE_INIT DeviceInit
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-mbbcx-mbbdeviceinitconfig)

MbbDeviceInitConfig function

Description

The MBBDeviceInitConfig method initializes MBBCx device initialization operations when the Plug and Play (PnP) manager reports the existence of a device.

Parameters

DeviceInit

A pointer to a WDFDEVICE_INIT object that the client received in its EVT_WDF_DRIVER_DEVICE_ADD routine.

Return value

Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.

Remarks

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.

See also

NetDeviceInitConfig

EVT_WDF_DRIVER_DEVICE_ADD

Initialize the device