CoGetCallContext (Compact 2013)

3/26/2014

This function retrieves the context of the current call on the current thread.

Syntax

HRESULT CoGetCallContext(
  REFIID riid,
  void** ppInterface
);

Parameters

  • riid
    [in] Interface identifier (IID) of the call context that is being requested. If you are using the default call context supported by standard marshaling, IID_IServerSecurity is available. For COM+ applications using role-based security, IID_ISecurityCallContext is available.
  • ppInterface
    [out] Address of pointer variable that receives the interface pointer requested in riid. Upon successful return, *ppInterface contains the requested interface pointer.

Return Value

  • S_OK
    Success.
  • E_NOINTERFACE
    The call context does not support the interface identified by riid.

Remarks

CoGetCallContext retrieves the context of the current call on the current thread. The riid parameter specifies the interface on the context to be retrieved. This is one of the functions provided to give the server access to any contextual information of the caller.

To determine whether the platform supports this function, see Determining Supported COM APIs.

Requirements

Header

objbase.h

Library

ole32.lib

See Also

Reference

COM Functions