Source code of Windows XP (NT5)
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.

21 lines
545 B

  1. // put handler specific declarations that the base class needs here.
  2. #ifndef _BASESTUFF_
  3. #define _BASESTUFF_
  4. // structure for adding any item specific data.
  5. // warning: must contain OFFLINEHANDLERITEM structure first so
  6. // can use common enumerator.
  7. typedef struct _HANDLERITEM
  8. {
  9. SYNCMGRHANDLERITEM baseItem;
  10. char szProfileName[MAX_PATH];
  11. LPMDBX pmdbx; // offlineStore interface.
  12. LPMAPISESSION lpSession; // mapi logon session for this item.
  13. BOOL fItemCompleted;
  14. } HANDLERITEM;
  15. typedef HANDLERITEM *LPHANDLERITEM;
  16. #endif // _BASESTUFF_