// mbbcx.h
VOID MbbRequestCompleteWithInformation(
MBBREQUEST Request,
NTSTATUS NtStatus,
ULONG_PTR Information
);
View the official Windows Driver Kit DDI referenceNo description available.
Client drivers call the MbbRequestCompleteWithInformation method to complete a specified request for receiving an MBIM response message from the device.
RequestA handle to the framework request object passed in from the EvtMbbDeviceReceiveMbimFragment callback function.
NtStatusAn NTSTATUS value that represents the completion status of the request.
InformationThe client driver must pass in the number of bytes it has written to the pre-allocated buffer.
This method must only be used to complete requests from the EvtMbbDeviceReceiveMbimFragment callback function.
To complete requests from the EvtMbbDeviceSendMbimFragment callback function, the client driver must call the MbbRequestComplete method.