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.

22 lines
551 B

  1. // put handler specific declarations that the base class needs here.
  2. #ifndef _BASESTUFF_
  3. #define _BASESTUFF_
  4. // #include "..\rover\FILESYNC\SYNCUI\INC\brfcasep.h"
  5. #include "rover\FILESYNC\SYNCUI\INC\brfcasep.h"
  6. // structure for adding any item specific data.
  7. // warning: must contain OFFLINEHANDLERITEM structure first so
  8. // can use common enumerator.
  9. typedef struct _HANDLERITEM
  10. {
  11. SYNCMGRHANDLERITEM baseItem;
  12. TCHAR szBriefcasePath[MAX_PATH];
  13. LPBRIEFCASESTG pbrfstg;
  14. } HANDLERITEM;
  15. typedef HANDLERITEM *LPHANDLERITEM;
  16. #endif // _BASESTUFF_