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
1.6 KiB

  1. // Copyright (c) 1998-1999 Microsoft Corporation
  2. #ifdef NOMINMAX
  3. #undef NOMINMAX
  4. #endif
  5. #include <winver.h>
  6. #include <ntverp.h>
  7. #include "aciniupd.h"
  8. #define VER_FILETYPE VFT_APP
  9. #define VER_FILESUBTYPE VFT2_UNKNOWN
  10. #define VER_FILEDESCRIPTION_STR "INI file update utility"
  11. #define VER_INTERNALNAME_STR "aciniupd"
  12. #define VER_ORIGINALFILENAME_STR "aciniupd.exe"
  13. #include <verall.h>
  14. #include "common.ver"
  15. STRINGTABLE
  16. BEGIN
  17. IDS_ERROR_MALLOC
  18. L"Error allocating memory\n\n"
  19. IDS_ERROR_INVALID_PARAMETERS
  20. L"Invalid parameter(s) or missing parameter(s)\n\n"
  21. IDS_ERROR_GET_VALUE
  22. L"Unable to get the value for key, %s.\n\n"
  23. IDS_ERROR_UPDATE_VALUE
  24. L"Unable to update the value for key, %s, error code = 0x%x.\n\n"
  25. IDS_ERROR_DEL_KEY
  26. L"Unable to delete the key, %s, error code = 0x%x.\n\n"
  27. IDS_ERROR_UPDATE_KEY
  28. L"Unable to update the key, %s, error code = 0x%x.\n\n"
  29. IDS_ERROR_CHANGE_MODE
  30. L"Unable to change the user mode, error code = 0x%x.\n\n"
  31. IDS_HELP_USAGE1
  32. L"ACINIUPD: utility to update the INI file.\n\n"
  33. IDS_HELP_USAGE2
  34. L"aciniupd [/e | /k] [/v] ini_file section key new_value.\n"
  35. IDS_HELP_USAGE3
  36. L" /e Update the value for the key in the section specified.\n"
  37. IDS_HELP_USAGE4
  38. L" /k Update the key name with the new key name in the section specified.\n"
  39. IDS_HELP_USAGE6
  40. L" /v Verbose mode.\n\n"
  41. END