windows-nt/Source/XPSP1/NT/com/mobile/syncmgr/test/outhndlr/base.h
2020-09-26 16:20:57 +08:00

22 lines
545 B
C

// 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_