CoRegisterSurrogate (Compact 2013)

3/26/2014

This function registers the surrogate process through its ISurrogate interface pointer.

Syntax

HRESULT CoRegisterSurrogate(
  ISurrogate* pSurrogate
);

Parameters

  • pSurrogate
    [in] Pointer to the ISurrogate interface on the surrogate process to be registered.

Return Value

  • S_OK
    The surrogate process was registered.

Remarks

The CoRegisterSurrogate function sets a global interface pointer to the ISurrogate interface implemented on the surrogate process. This pointer is set in the ole32 DLL loaded in the surrogate process. COM uses this global pointer in ole32 to call the methods of ISurrogate.

This function is usually called by the surrogate implementation when it is launched.

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