1 /* Regsvr32 resource strings
3 * Copyright 2003 Stefan Leichter
4 * Copyright 2014 Hugh McMaster
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.
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.
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
26 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
30 STRING_HEADER, "Wine DLL Registration Utility\n\n\
31 Provides DLL registration services.\n\n"
32 STRING_USAGE, "Usage:\n\
33 \ regsvr32 [/u] [/s] [/n] [/i[:cmdline]] DllName\n\n\
35 \ [/u] Unregister a server.\n\
36 \ [/s] Silent mode (no messages will be displayed).\n\
37 \ [/i] Call DllInstall, passing an optional [cmdline].\n\
38 \tWhen used with [/u] DllInstall is called in uninstall mode.\n\
39 \ [/n] Do not call DllRegisterServer. This option must be used with [/i].\n\n"
40 STRING_UNRECOGNIZED_SWITCH, "regsvr32: Invalid or unrecognized switch [%1]\n\n"
41 STRING_DLL_LOAD_FAILED, "regsvr32: Failed to load DLL '%1'\n"
42 STRING_PROC_NOT_IMPLEMENTED, "regsvr32: '%1!S!' not implemented in DLL '%2'\n"
43 STRING_REGISTER_FAILED, "regsvr32: Failed to register DLL '%1'\n"
44 STRING_REGISTER_SUCCESSFUL, "regsvr32: Successfully registered DLL '%1'\n"
45 STRING_UNREGISTER_FAILED, "regsvr32: Failed to unregister DLL '%1'\n"
46 STRING_UNREGISTER_SUCCESSFUL, "regsvr32: Successfully unregistered DLL '%1'\n"
47 STRING_INSTALL_FAILED, "regsvr32: Failed to install DLL '%1'\n"
48 STRING_INSTALL_SUCCESSFUL, "regsvr32: Successfully installed DLL '%1'\n"
49 STRING_UNINSTALL_FAILED, "regsvr32: Failed to uninstall DLL '%1'\n"
50 STRING_UNINSTALL_SUCCESSFUL, "regsvr32: Successfully uninstalled DLL '%1'\n"
53 #define WINE_FILEDESCRIPTION_STR "Wine Register Server"
54 #define WINE_FILENAME_STR "REGSVR32.EXE"
55 #define WINE_FILETYPE VFT_APP
56 #define WINE_FILEVERSION 5,1,2600,2180
57 #define WINE_FILEVERSION_STR "5.1.2600.2180"
59 #define WINE_PRODUCTVERSION 5,1,2600,2180
60 #define WINE_PRODUCTVERSION_STR "5.1"
62 #include "wine/wine_common_ver.rc"