Partager via


OneStopFactory (Compact 7)

3/12/2014

The OneStopFactory function is implemented as the DLL entry point for creating custom transports. It is called by Messaging to create an instance of a custom transport and get the IMailSyncHandler interface for the transport. The ONESTOPFACTORYFUNC type defines a pointer to this function. OneStopFactory is a placeholder for the application-defined function name.

Syntax

HRESULT OneStopFactory (
  LPCWSTR pszType, 
  IMailSyncHandler** ppObj
);

Parameters

  • pszType
    [in] String identifying the name of the transport. This allows multiple transports to reside in a single DLL.
  • ppObj
    [out] Reference to the IMailSyncHandler interface for the requested transport.

Return Value

This function returns the standard values E_INVALIDARG, E_OUTOFMEMORY, E_UNEXPECTED, and E_FAIL, as well as the following:

  • S_OK
    The transport correctly initialized, and the function successfully returned a reference to the IMailSyncHandler interface.

Requirements

Header

cemapi.h

Library

cemapi.lib

See Also

Reference

MAPI Functions