MbbRequestComplete - NtDoc

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

VOID MbbRequestComplete(
  MBBREQUEST Request,
  NTSTATUS   NtStatus
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

MbbRequestComplete function

Description

Client drivers call the MbbRequestComplete method to complete a specified request for sending an MBIM control message to the device.

Parameters

Request

A handle to the framework request object passed in from the EvtMbbDeviceSendMbimFragment callback function.

NtStatus

An NTSTATUS value that represents the completion status of the request.

Remarks

This method must only be used to complete requests from the EvtMbbDeviceSendMbimFragment callback function.

To complete the request from the EvtMbbDeviceReceiveMbimFragment callback function, the client driver must call the MbbRequestCompleteWithInformation method.

See also