Leaked source code of windows server 2003
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.

31 lines
1.2 KiB

  1. // --------------------------------------------------------------------------------
  2. // Migrate.h
  3. // --------------------------------------------------------------------------------
  4. #ifndef __MIGRATE_H
  5. #define __MIGRATE_H
  6. // --------------------------------------------------------------------------------
  7. // Depends
  8. // --------------------------------------------------------------------------------
  9. #include "utility.h"
  10. // --------------------------------------------------------------------------------
  11. // MIGRATETOTYPE
  12. // --------------------------------------------------------------------------------
  13. typedef enum tagMIGRATETOTYPE {
  14. DOWNGRADE_V5B1_TO_V1,
  15. DOWNGRADE_V5B1_TO_V4,
  16. UPGRADE_V1_OR_V4_TO_V5,
  17. DOWNGRADE_V5_TO_V1,
  18. DOWNGRADE_V5_TO_V4
  19. } MIGRATETOTYPE;
  20. // --------------------------------------------------------------------------------
  21. // Globals
  22. // --------------------------------------------------------------------------------
  23. extern IMalloc *g_pMalloc;
  24. extern HINSTANCE g_hInst;
  25. extern DWORD g_cbDiskNeeded;
  26. extern DWORD g_cbDiskFree;
  27. extern ACCOUNTTABLE g_AcctTable;
  28. #endif // __MIGRATE_H