HrComposeEID

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Creates a compound entry identifier for an object, usually a message in a message store.

Header file:

Mapiutil.h

Implemented by:

MAPI

Called by:

Client applications

HrComposeEID(
  LPMAPISESSION psession,
  ULONG cbStoreRecordKey,
  LPBYTE pStoreRecordKey,
  ULONG cbMsgEID,
  LPENTRYID pMsgEID,
  ULONG FAR * pcbEID,
  LPENTRYID FAR * ppEID
);

Parameters

  • psession
    [in] Pointer to the session in use by the client application.

  • cbStoreRecordKey
    [in] Size, in bytes, of the record key of the message store holding the message or other object. If zero is passed in the cbStoreRecordKey parameter, the ppEID parameter points to a copy of the object's entry identifier.

  • pStoreRecordKey
    [in] Pointer to the record key of the message store that contains the message or other object.

  • cbMsgEID
    [in] Size, in bytes, of the entry identifier of the message or other object.

  • pMsgEID
    [in] Pointer to the entry identifier of the object.

  • pcbEID
    [out] Pointer to the size, in bytes, of the returned identifier.

  • ppEID
    [out] Pointer to a pointer to the returned entry identifier. If the value of the cbStoreRecordKey parameter is greater than zero, the ppEID parameter points to a pointer to the compound entry identifier that is created. If cbStoreRecordKey is zero, ppEID points to a pointer to a copy of the object's entry identifier.

Return Value

None.

Remarks

If the message or other object for which the compound entry identifier is being created resides in a message store, the identifier is created from the object's entry identifier and the store's record key. If the object is not in a store, that is, if the byte count for the store record key passed in cbStoreRecordKey is zero, the object's entry identifier is simply copied.

The HrComposeEID function enables applications to work with objects in multiple stores through the use of compound entry identifiers. An application can call the HrDecomposeEID function to split the compound entry identifier into its original constituents.

See Also

Reference

HrComposeMsgID

HrDecomposeMsgID