Platform SDK: MAPI |
The WrapStoreEntryID function converts a message store's internal entry identifier to an entry identifier more usable by the messaging system.
Header file: | MAPIUTIL.H |
Implemented by: | MAPI |
Called by: | Client applications and service providers |
WrapStoreEntryID( ULONG ulFlags, LPTSTR szDLLName, ULONG cbOrigEntry, LPENTRYID lpOrigEntry, ULONG * lpcbWrappedEntry, LPENTRYID * lppWrappedEntry );
A message store object retains an internal entry identifier which is meaningful only to service providers coresident with that message store. For other messaging components, MAPI supplies a wrapped version of the internal entry identifier that makes it recognizable as belonging to the message store. Coresident service providers should always be given the original unwrapped message store entry identifier; client applications should always be given the wrapped version, which is then usable anywhere in the messaging domain and in other domains.
A service provider can wrap a message store entry identifier using either the WrapStoreEntryID function or the IMAPISupport::WrapStoreEntryID method, which calls the WrapStoreEntryID function. The provider must wrap the entry identifier when exposing the message store's PR_ENTRYID property or writing it into a profile section, and when exposing the PR_STORE_ENTRYID property. MAPI wraps a message store entry identifier when responding to an IMAPISession::OpenMsgStore call.
When a client application passes a wrapped message store entry identifier to MAPI, for example in a IMAPISession::OpenEntry call, MAPI unwraps the entry identifier before using it to call a provider method such as IMSProvider::Logon or IMSProvider::CompareStoreIDs.