SMAPIVerb
The SMAPIVerb
structure contains arrays of MAPI verbs.
Quick Info
Header
file: |
MAPIFORM.H |
typedef struct
{
LONG lVerb;
LPTSTR szVerbname;
DWORD fuFlags;
DWORD grfAttribs;
ULONG ulFlags; /* Either 0 or MAPI_UNICODE */
} SMAPIVerb, FAR * LPMAPIVERB;
Members
lVerb
Numeric value
for the verb.
szVerbname
Character
string containing the name of the verb.
fuFlags
Flags for the
verb.
grfAttribs
Attributes of
the verb.
ulFlags
Bitmask of
flags. If the szVerbname member has Unicode format, the following flag
can be set:
MAPI_UNICODE
The passed-in
strings are in Unicode format. If the MAPI_UNICODE flag is not set, the strings
are in ANSI format.
Remarks
The SMAPIVerb
structure is passed as a parameter in the IMAPIFormMgr and IMAPIFormContainer
method ResolveMultipleMessageClasses.
See Also