// mbbcx.h
VOID MBB_DEVICE_CONFIG_INIT(
PMBB_DEVICE_CONFIG Config,
PFN_MBB_DEVICE_SEND_MBIM_FRAGMENT SendMbimFragment,
PFN_MBB_DEVICE_RECEIVE_MBIM_FRAGMENT ReceiveMbimFragment,
PFN_MBB_DEVICE_SEND_DEVICE_SERVICE_SESSION_DATA SendDeviceServiceSessionData,
PFN_MBB_DEVICE_CREATE_ADAPTER CreateAdapter
);
View the official Windows Driver Kit DDI referenceNo description available.
The MBB_DEVICE_CONFIG_INIT method initializes the MBB_DEVICE_CONFIG structure.
ConfigA pointer to the client driver-allocated MBB_DEVICE_CONFIG structure.
SendMbimFragmentA pointer to the client driver's implementation of the EVT_MBB_DEVICE_SEND_MBIM_FRAGMENT callback function.
ReceiveMbimFragmentA pointer to the client driver's implementation of the EVT_MBB_DEVICE_RECEIVE_MBIM_FRAGMENT callback function.
SendDeviceServiceSessionDataA pointer to the client driver's implementation of the EVT_MBB_DEVICE_SEND_SERVICE_SESSION_DATA callback function.
CreateAdapterA pointer to the client driver's implementation of the EVT_MBB_DEVICE_CREATE_ADAPTER callback function.
The client driver calls this method from its EVT_WDF_DRIVER_DEVICE_ADD event callback function in preparation for calling MbbDeviceInitialize.
Mobile Broadband (MBB) WDF class extension (MBBCx)