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.

46 lines
2.5 KiB

  1. #include <windows.h>
  2. #include "messages.h"
  3. #include <ntverp.h>
  4. #define VER_FILETYPE VFT_APP
  5. #define VER_FILESUBTYPE VFT2_UNKNOWN
  6. #define VER_FILEDESCRIPTION_STR "LZ Expansion Utility"
  7. #define VER_INTERNALNAME_STR "expand\0"
  8. #include "common.ver"
  9. STRINGTABLE
  10. BEGIN
  11. SID_INSUFF_MEM "Insufficient memory for buffers.\n"
  12. SID_NOT_A_DIR "Destination is not a directory: %s.\n"
  13. SID_BAD_SWITCH "Unrecognized switch -%c.\n"
  14. SID_BAD_SWITCH2 "Unrecognized switch -%s.\n"
  15. SID_NO_FILE_SPECS "No files specified.\n"
  16. SID_NO_OVERWRITE "No destination specified for: %s.\n"
  17. SID_NO_OPEN_INPUT "Can't open input file: %s.\n"
  18. SID_NO_READ_INPUT "Can't read from input file: %s.\n"
  19. SID_NO_OPEN_OUTPUT "Can't open output file: %s.\n"
  20. SID_OUT_OF_SPACE "Out of disk space writing output file: %s.\n"
  21. SID_BANNER_TEXT "Microsoft (R) File Expansion Utility Version %s\nCopyright (c) Microsoft Corporation. All rights reserved.\n\n"
  22. SID_INSTRUCTIONS "Expands one or more compressed files.\n\nEXPAND [-r] Source Destination\nEXPAND -r Source [Destination]\nEXPAND -D Source.cab [-F:Files]\nEXPAND Source.cab -F:Files Destination\n\n -r\t\tRename expanded files.\n -D\t\tDisplay list of files in source.\n Source\tSource file specification. Wildcards may be used.\n -F:Files\tName of files to expand from a .CAB.\n Destination\tDestination file | path specification.\n\t\tDestination may be a directory.\n\t\tIf Source is multiple files and -r is not specified,\n\t\tDestination must be a directory.\n"
  23. SID_GEN_FAILURE "Expanding %s to %s failed.\n"
  24. SID_COLLISION "Cannot expand a file onto itself: %s.\n"
  25. SID_EXPANDING "Expanding %s to %s.\n"
  26. SID_COPYING "Copying %s to %s.\n"
  27. SID_FILE_REPORT "%s: %ld bytes expanded to %ld bytes, %d%% increase.\n"
  28. SID_COPY_REPORT "%s: %ld bytes copied.\n"
  29. SID_TOTAL_REPORT "Total increase: %d files, %ld bytes expanded to %ld bytes, %d%% increase.\n"
  30. SID_FORMAT_ERROR "Error in compressed input file format: %s.\n"
  31. SID_UNKNOWN_ALG "Unrecognized compression scheme: %s.\n"
  32. SID_UNEXP_TARGET "No destination directory expected.\n"
  33. SID_LISTING "%s: %s\n"
  34. SID_NO_MATCHES "%s: No files matching '%s'.\n"
  35. SID_TOTAL_COUNT "%d files total.\n"
  36. SID_DEST_REQUIRED "%s: Destination directory required for a multi-file CAB.\n\n"
  37. SID_FILESPEC_REQUIRED "The source file contains multiple files. The -F:filespec option is\nrequired to specify which file(s) are to be expanded. -F:* may be\nused to expand all files. Type EXPAND -? for more details.\n"
  38. END