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.

67 lines
1.7 KiB

  1. /*
  2. ** messages.h - Messages displayed by LZA file compression / expansion
  3. ** programs.
  4. **
  5. ** These messages follow printf() formatting conventions. This module is
  6. ** included twice - once for COMPRESS (COMPRESS defined) and once for EXPAND
  7. ** (COMPRESS not defined).
  8. **
  9. ** Converted to stringtable, FloydR, 2/10/93
  10. */
  11. // Constants
  12. /////////////
  13. /***************************** COMMON MESSAGES *****************************/
  14. #define SID_INSUFF_MEM 1
  15. #define SID_NOT_A_DIR 2
  16. #define SID_BAD_SWITCH 3
  17. #define SID_NO_FILE_SPECS 4
  18. #define SID_NO_OVERWRITE 5
  19. #define SID_NO_OPEN_INPUT 6
  20. #define SID_NO_READ_INPUT 7
  21. #define SID_NO_OPEN_OUTPUT 8
  22. #define SID_OUT_OF_SPACE 9
  23. #define SID_BANNER_TEXT 10
  24. #define SID_GEN_FAILURE 11
  25. #define SID_COLLISION 12
  26. #define SID_FILE_REPORT 13
  27. #define SID_EMPTY_FILE_REPORT 14
  28. #define SID_TOTAL_REPORT 15
  29. #define SID_INSTRUCTIONS 16
  30. #define SID_INSTRUCTIONS2 17
  31. #define SID_INSTRUCTIONS3 18
  32. #define SID_BAD_SWITCH2 19
  33. #ifdef COMPRESS
  34. /**************************** COMPRESS MESSAGES ****************************/
  35. #define SID_COMPRESSING 20
  36. #define SID_COMPRESSING_MSZIP 21
  37. #define SID_COMPRESSING_QUANTUM 22
  38. #define SID_COMPRESSING_LZX 23
  39. #define SID_INVALID_LIST_FILE 24
  40. #else // EXPAND
  41. /***************************** EXPAND Messages *****************************/
  42. #define SID_EXPANDING 20
  43. #define SID_COPYING 21
  44. #define SID_COPY_REPORT 22
  45. #define SID_FORMAT_ERROR 23
  46. #define SID_UNKNOWN_ALG 24
  47. #define SID_UNEXP_TARGET 25
  48. #define SID_LISTING 26
  49. #define SID_TOTAL_COUNT 27
  50. #define SID_NO_MATCHES 28
  51. #define SID_DEST_REQUIRED 29
  52. #define SID_FILESPEC_REQUIRED 30
  53. #endif
  54. extern TCHAR ErrorMsg[];