regsvr32.rc 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 "regsvr32.h"
  22. #pragma makedep po
  23. LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
  24. STRINGTABLE
  25. {
  26. STRING_HEADER, "Wine DLL Registration Utility\n\n\
  27. Provides DLL registration services.\n\n"
  28. STRING_USAGE, "Usage:\n\
  29. \ regsvr32 [/u] [/s] [/n] [/i[:cmdline]] DllName\n\n\
  30. Options:\n\
  31. \ [/u] Unregister a server.\n\
  32. \ [/s] Silent mode (no messages will be displayed).\n\
  33. \ [/i] Call DllInstall, passing an optional [cmdline].\n\
  34. \tWhen used with [/u] DllInstall is called in uninstall mode.\n\
  35. \ [/n] Do not call DllRegisterServer. This option must be used with [/i].\n\n"
  36. STRING_UNRECOGNIZED_SWITCH, "regsvr32: Invalid or unrecognized switch [%1]\n\n"
  37. STRING_DLL_LOAD_FAILED, "regsvr32: Failed to load DLL '%1'\n"
  38. STRING_PROC_NOT_IMPLEMENTED, "regsvr32: '%1!S!' not implemented in DLL '%2'\n"
  39. STRING_REGISTER_FAILED, "regsvr32: Failed to register DLL '%1'\n"
  40. STRING_REGISTER_SUCCESSFUL, "regsvr32: Successfully registered DLL '%1'\n"
  41. STRING_UNREGISTER_FAILED, "regsvr32: Failed to unregister DLL '%1'\n"
  42. STRING_UNREGISTER_SUCCESSFUL, "regsvr32: Successfully unregistered DLL '%1'\n"
  43. STRING_INSTALL_FAILED, "regsvr32: Failed to install DLL '%1'\n"
  44. STRING_INSTALL_SUCCESSFUL, "regsvr32: Successfully installed DLL '%1'\n"
  45. STRING_UNINSTALL_FAILED, "regsvr32: Failed to uninstall DLL '%1'\n"
  46. STRING_UNINSTALL_SUCCESSFUL, "regsvr32: Successfully uninstalled DLL '%1'\n"
  47. }
  48. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  49. #define WINE_FILEDESCRIPTION_STR "Wine Register Server"
  50. #define WINE_FILENAME_STR "REGSVR32.EXE"
  51. #define WINE_FILETYPE VFT_APP
  52. #define WINE_FILEVERSION 5,1,2600,2180
  53. #define WINE_FILEVERSION_STR "5.1.2600.2180"
  54. #define WINE_PRODUCTVERSION 5,1,2600,2180
  55. #define WINE_PRODUCTVERSION_STR "5.1"
  56. #include "wine/wine_common_ver.rc"