mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
545 B
22 lines
545 B
|
|
// put handler specific declarations that the base class needs here.
|
|
|
|
#ifndef _BASESTUFF_
|
|
#define _BASESTUFF_
|
|
|
|
// structure for adding any item specific data.
|
|
// warning: must contain OFFLINEHANDLERITEM structure first so
|
|
// can use common enumerator.
|
|
|
|
typedef struct _HANDLERITEM
|
|
{
|
|
SYNCMGRHANDLERITEM baseItem;
|
|
char szProfileName[MAX_PATH];
|
|
LPMDBX pmdbx; // offlineStore interface.
|
|
LPMAPISESSION lpSession; // mapi logon session for this item.
|
|
BOOL fItemCompleted;
|
|
} HANDLERITEM;
|
|
|
|
typedef HANDLERITEM *LPHANDLERITEM;
|
|
|
|
#endif // _BASESTUFF_
|