IMbnVendorSpecificEvents interface

This notification interface signals an application of the completion status of vendor-specific operations and other vendor-specific changes in the device state.

Members

The IMbnVendorSpecificEvents interface inherits from the IUnknown interface. IMbnVendorSpecificEvents also has these types of members:

Methods

The IMbnVendorSpecificEvents interface has these methods.

MethodDescription
OnEventNotification

A event has occurred in the miniport driver.

OnSetVendorSpecificComplete

A vendor-specific operation call has completed.

 

Remarks

The following procedure describes how to register for notifications.

  1. Get an IConnectionPointContainer interface by calling QueryInterface on an IMbnInterfaceManager object.
  2. Call FindConnectionPoint on the returned interface and pass IID_IMbnVendorSpecificEvents to riid.
  3. Call Advise on the returned connection point and pass a pointer to an IUnknown interface on an object that implements IMbnVendorSpecificEvents to pUnk.

Notifications can be terminated by calling Unadvise on the connection point returned in step 2.

To view some code that registers for COM notifications, see the Client section of the COM Connection Points article.

Requirements

Minimum supported client

Windows 7 [desktop apps only]

Minimum supported server

None supported

IDL

Mbnapi.idl

 

 

Show: