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.

53 lines
2.7 KiB

  1. #include <windows.h>
  2. #include "strids.h"
  3. STRINGTABLE
  4. BEGIN
  5. #ifdef FE_SB
  6. LC_CMD_HELP_1 "\nIniToDat"
  7. LC_CMD_HELP_2 " Convert Perf????.ini to Perf????.dat file"
  8. LC_CMD_HELP_3 "\nUsage: initodat codepage inifile [datfile]"
  9. LC_CMD_HELP_4 " ex: initodat 932 perfc011.ini obj\i386\perfc011.dat\n"
  10. LC_CMD_HELP_5 " codepage code page in decimal for the target language perf????.dat."
  11. LC_CMD_HELP_6 " Required when the system default code page of the machine"
  12. LC_CMD_HELP_7 " generating a data file differs from that of the target language.\n"
  13. LC_CMD_HELP_8 " inifile The name of the initialization file that contains"
  14. LC_CMD_HELP_9 " the counter name definitions or explain text for a specific"
  15. LC_CMD_HELP_10 " language.\n"
  16. LC_CMD_HELP_11 " datfile Optional output file name. By default, initodat will write"
  17. LC_CMD_HELP_12 " the data file to the same directory and base file name as the"
  18. LC_CMD_HELP_13 " .ini file using the .dat extension.\n\n"
  19. #else
  20. LC_CMD_HELP_1 "\nIniToDat"
  21. LC_CMD_HELP_2 " Convert Perf????.ini to Perf???.dat file"
  22. LC_CMD_HELP_3 "\nUsage:"
  23. LC_CMD_HELP_4 "\n initodat filename\n"
  24. LC_CMD_HELP_5 " filename is the name of the initialization file that contains"
  25. LC_CMD_HELP_6 " the counter name definitions or explain text for a specific"
  26. LC_CMD_HELP_7 " language. Initodat will create a data file using the same"
  27. LC_CMD_HELP_8 " name with .dat extension.\n\n"
  28. #endif
  29. LC_NO_INIFILE "\nUnable to find initialization file %ws"
  30. LC_SUMMARY "\nSummary:\n"
  31. LC_NUM_OF_ID " Number of IDs - "
  32. LC_LAST_ID " Last ID - "
  33. LC_LAST_TEXT " Last Text - \n"
  34. LC_BAD_ID "\n*** ERROR *** invalid ID entry after "
  35. LC_MISSING_DEL "\n*** ERROR *** either missing quote or comma.\n"
  36. LC_CANT_CREATE "\n*** ERROR *** cannot create data file.\nError = %ld\n"
  37. LC_CANT_WRITE "\n*** ERROR *** cannot write to data file.\nError = %ld\n"
  38. LC_ACCESS_DENIED "*** Write access is denied. ***"
  39. LC_DISK_FULL "*** There is not enough space on the disk. ***"
  40. END
  41. #include <ntverp.h>
  42. #define VER_FILETYPE VFT_APP
  43. #define VER_FILESUBTYPE VFT2_UNKNOWN
  44. #define VER_FILEDESCRIPTION_STR "Convert Perf. Registry strings from text to data file"
  45. #define VER_INTERNALNAME_STR "INITODAT.EXE"
  46. #define VER_ORIGINALFILENAME_STR "INITODAT.EXE"
  47. #include "common.ver"