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.

46 lines
1.4 KiB

  1. //
  2. // scriptmsg.h - messages, token, etc. are gathered here to make localization easier
  3. //
  4. // STR_ are things that maybe don't get localized (command tokens)
  5. // MSG_ are output messages that probably do get localized
  6. //
  7. // NOTE: This file is ONLY for MAKE compiled in scripts in DiskPart.
  8. // msg.h has symbols for DiskPart proper
  9. //
  10. #define SCRIPT_LIST L"LIST"
  11. #define SCRIPT_MSFT L"MSFT"
  12. #define SCRIPT_TEST L"TEST"
  13. #define MSG_SCR_LIST L" - show list of compiled in scripts"
  14. //
  15. // ----- Microsoft Style Disk script -----
  16. //
  17. #define MSG_SCR_MSFT L" - Make Microsoft style disk"
  18. extern CHAR16 *ScriptMicrosoftMessage[];
  19. #define STR_BOOT L"BOOT"
  20. #define STR_ESPSIZE L"ESPSIZE"
  21. #define STR_ESPNAME L"ESPNAME"
  22. #define STR_RESSIZE L"RESSIZE"
  23. #define STR_ESP_DEFAULT L"EFI SYSTEM PARTITION (ESP)"
  24. #define STR_DATA_DEFAULT L"USER DATA"
  25. #define STR_MSRES_NAME L"MS RESERVED"
  26. #define DEFAULT_RES_SIZE (32) // in MB!
  27. //#define DEFAULT_RES_SIZE (1) // TEST ONLY
  28. #define MIN_ESP_SIZE (150 * (1024 * 1024))
  29. #define MAX_ESP_SIZE (500 * (1024 * 1024))
  30. //#define MIN_ESP_SIZE (1 * (1024 * 1024)) // TEST ONLY
  31. //#define MAX_ESP_SIZE (2 * (1024 * 1024)) // TEST ONLY
  32. //
  33. // ----- Fill the disk with partitions test script -----
  34. //
  35. #define MSG_SCR_TEST L" - Fill the slot table with 1mb partitions"
  36. extern CHAR16 *ScriptTestMessage[];