Share via


IConnectionManager::InvokeVendorAction (Windows Embedded CE 6.0)

1/6/2010

This method enables ConnectionManager implementations and users to provide and invoke custom vendor-specific actions that are not defined in the ConnectionManager DCP.

Syntax

virtual DWORD InvokeVendorAction(
  LPCWSTR pszActionName,
  DISPPARAMS* pdispparams, 
  VARIANT* pvarResult
) = 0;

Parameters

  • pszActionName
    [in] Name of the vendor-specific action.
  • pdispparams
    [in] Pointer to a DISPPARAMS structure that contains input and/or output parameters used by the vendor-specific action.
  • pvarResult
    [in, out] Pointer to a VARIANT that the implementation of this method can use to return the results of the specified action. Implementations can also use output parameters in the pdispparams parameter.

Return Value

Custom implementations can return appropriate error codes. Should return SUCCESS_AV if the method succeeds. Otherwise, should return an error code defined in WinError.h or UPnP.h, one of the UPnP AV-specific return values specified in UPnPAVError, or a custom error code defined by the action.

Remarks

Devices implement this method to provide custom vendor-specific actions. In addition to implementing this method, all of the other standard processes for extending UPnP DCPs should be followed, including updating the service description XML documents, and so on. For more information about implementing and calling custom actions, see Implementing and Calling Custom Actions.

Control points call this method to invoke custom vendor-specific actions. For more information about implementing custom vendor-specific actions, see UPnP AV DCP Documentation.

Requirements

Header av_upnp.h
Library Av_upnp.lib
Windows Embedded CE Windows CE 5.0 and later

See Also

Reference

IConnectionManager
UPnPAVError

Other Resources

DISPPARAMS
VARIANT and VARIANTARG