// mbbcx.h
NTSTATUS MbbDeviceInitialize(
WDFDEVICE Device,
PMBB_DEVICE_CONFIG Config
);
View the official Windows Driver Kit DDI referenceNo description available.
The MbbDeviceInitialize method registers the client driver's MBB-specific callback functions.
DeviceA handle to a framework device object the client driver obtained from a previous call to WdfDeviceCreate.
ConfigA pointer to a client driver-allocated and initialized MBB_DEVICE_CONFIG structure.
Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.
This method might return failure in low resource situations.
The client driver must call this method after it calls WdfDeviceCreate from within EVT_WDF_DRIVER_DEVICE_ADD.
For more information, see Initialize the device.