regsvr32.rc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* Regsvr32 resource strings
  2. *
  3. * Copyright 2003 Stefan Leichter
  4. * Copyright 2014 Hugh McMaster
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #include <windef.h>
  21. #include <winuser.h>
  22. #include "regsvr32.h"
  23. #pragma makedep po
  24. LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
  25. STRINGTABLE
  26. {
  27. STRING_HEADER, "Wine DLL Registration Utility\n\n\
  28. Provides DLL registration services.\n\n"
  29. STRING_USAGE, "Usage:\n\
  30. \ regsvr32 [/u] [/s] [/n] [/i[:cmdline]] DllName\n\n\
  31. Options:\n\
  32. \ [/u] Unregister a server.\n\
  33. \ [/s] Silent mode (no messages will be displayed).\n\
  34. \ [/i] Call DllInstall, passing an optional [cmdline].\n\
  35. \tWhen used with [/u] DllInstall is called in uninstall mode.\n\
  36. \ [/n] Do not call DllRegisterServer. This option must be used with [/i].\n\n"
  37. STRING_UNRECOGNIZED_SWITCH, "regsvr32: Invalid or unrecognized switch [%1]\n\n"
  38. STRING_DLL_LOAD_FAILED, "regsvr32: Failed to load DLL '%1'\n"
  39. STRING_PROC_NOT_IMPLEMENTED, "regsvr32: '%1!S!' not implemented in DLL '%2'\n"
  40. STRING_REGISTER_FAILED, "regsvr32: Failed to register DLL '%1'\n"
  41. STRING_REGISTER_SUCCESSFUL, "regsvr32: Successfully registered DLL '%1'\n"
  42. STRING_UNREGISTER_FAILED, "regsvr32: Failed to unregister DLL '%1'\n"
  43. STRING_UNREGISTER_SUCCESSFUL, "regsvr32: Successfully unregistered DLL '%1'\n"
  44. STRING_INSTALL_FAILED, "regsvr32: Failed to install DLL '%1'\n"
  45. STRING_INSTALL_SUCCESSFUL, "regsvr32: Successfully installed DLL '%1'\n"
  46. STRING_UNINSTALL_FAILED, "regsvr32: Failed to uninstall DLL '%1'\n"
  47. STRING_UNINSTALL_SUCCESSFUL, "regsvr32: Successfully uninstalled DLL '%1'\n"
  48. }
  49. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  50. /* @makedep: regsvr32.manifest */
  51. 1 RT_MANIFEST regsvr32.manifest
  52. #define WINE_FILEDESCRIPTION_STR "Wine Register Server"
  53. #define WINE_FILENAME_STR "REGSVR32.EXE"
  54. #define WINE_FILETYPE VFT_APP
  55. #define WINE_FILEVERSION 5,1,2600,2180
  56. #define WINE_FILEVERSION_STR "5.1.2600.2180"
  57. #define WINE_PRODUCTVERSION 5,1,2600,2180
  58. #define WINE_PRODUCTVERSION_STR "5.1"
  59. #include "wine/wine_common_ver.rc"