ENTRYID
The ENTRYID structure contains an entry identifier for a MAPI object.
Syntax
typedef struct {
BYTE abFlags[4];
BYTE ab[MAPI_DIM];
} ENTRYID, FAR *LPENTRYID;
Members
abFlags
Bitmask of flags that provide information describing the object. Only the first byte of the flags, abFlags[0], may be set by the provider; the other three are reserved. These flags must not be set for permanent entry identifiers; they are set only for short-term entry identifiers. To clients, this structure is read-only.The following flags can be set in abFlags[0]:
MAPI_NOTRECIP
The entry identifier cannot be used as a recipient on a message.
MAPI_NOTRESERVED
Other users cannot access the entry identifier.
MAPI_NOW
The entry identifier cannot be used at other times.
MAPI_SHORTTERM
The entry identifier is short-term. All other values in this byte must be set unless other uses of the entry identifier are allowed.
MAPI_THISSESSION
The entry identifier cannot be used on other sessions.
ab
Indicates an array of binary data used by service providers. The client application cannot use this array.
Remarks
The ENTRYID structure is used by message store and address book providers to construct unique identifiers for their objects. Entry identifiers are used to identify the following object types:
- Message store
- Folder
- Message
- Address book container
- Distribution list
- Messaging user
- Status
- Profile section
Each provider uses a format for the ENTRYID structure that makes sense for that provider.
Entry identifiers cannot be compared directly because one object can be represented by two different binary values. To determine whether two entry identifiers represent the same object, call the IMAPISession::CompareEntryIDs method.
When a client calls an object's IMAPIProp::GetPropsIMAPIProp::GetProps method to retrieve its entry identifier, the object returns the most permanent form of the entry identifier. A client can verify that an entry identifier is long-term by checking that none of the flags are set in the first byte of the abFlags member.
When a client accesses an entry identifier through a column in a table, most likely this entry identifier is short-term rather than long-term. Short-term entry identifiers can be used to open their corresponding objects only in the current MAPI session. A client can verify that an entry identifier is short-term by checking that all of the flags are set in the first byte of abFlags.
Some entry identifiers are short-term but have long-term use. Such entry identifiers have one or more of the appropriate flags set in the first byte of abFlags.
An ENTRYID structure has the following characteristics:
- Does not store the size of the entry identifier.
- Stores the flag data and the rest of the entry identifier separately.
- Is passed as a parameter to the methods of the IMAPIProp interface and to the following OpenEntry methods:
- Is used to store an entry identifier on disk.
Clients should always pass in naturally aligned entry identifiers. Although providers should handle arbitrarily aligned entry identifiers, clients should not expect this behavior. Failure to pass a suitable aligned entry identifier to a method can result in an alignment fault on RISC processors.
The natural alignment factor, typically 8 bytes, is the largest data type supported by the CPU and is usually the same alignment factor used by the system memory allocator. A naturally aligned memory address allows the CPU to access any data type it supports at that address without generating an alignment fault. For RISC CPUs, a data type of size n bytes must usually be aligned on an even multiple of n bytes, with the address being an even multiple of n.
Requirements
Pocket PC: Windows Mobile 2002 and later
OS Versions: Windows CE 3.0 and later
Header: mapidefs.h
See Also
Related Macros
Send feedback on this topic to the authors.
© 2005 Microsoft Corporation. All rights reserved.