CoRegisterSurrogate

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

HRESULT CoRegisterSurrogate(
  ISurrogate* pSurrogate 
);

Parameters

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

Return Values

  • 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

OS Versions: Windows CE 3.0 and later.
Header: Objbase.h.
Link Library: Ole32.lib.

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.