mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Did forget include En.rc :)
svn path=/trunk/; revision=15247
This commit is contained in:
parent
3ad5fab2d4
commit
6873af6255
5 changed files with 17 additions and 8 deletions
|
@ -7,11 +7,11 @@
|
|||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_UsageMessage, "%s\n\n\
|
||||
"Usage: regsvr32 [/u] [/s] [/c] [/n] [/i[:cmdline]] dllname\n\
|
||||
/u - Unregister server\n"\
|
||||
/s - Silent; display no message boxes\n"\
|
||||
/c - Console output\n"\
|
||||
|
||||
IDS_UsageMessage, "%s\n\nUsage: regsvr32 [/u] [/s] [/c] [/n] [/i[:cmdline]] dllname\n\
|
||||
/u - Unregister server\n\
|
||||
/s - Silent; display no message boxes\n\
|
||||
/c - Console output\n\
|
||||
/i - Call DllInstall passing it an optional [cmdline]; when used with /u calls dll uninstall\n\
|
||||
/n - Do not call DllRegisterServer; this option must be used with /i"
|
||||
|
||||
|
@ -21,12 +21,12 @@ IDS_InvalidFlag, "Unrecognized flag: %s"
|
|||
|
||||
IDS_SwitchN_NoI, "Unrecognized flag: /n must be used with the /i switch"
|
||||
|
||||
IDS_DllNotLoaded, "LoadLibrary(\"%s\") failed.\nGetLastError returns 0x%08x."
|
||||
IDS_DllNotLoaded, "LoadLibrary('%s') failed.\nGetLastError returns 0x%08x."
|
||||
|
||||
IDS_MissingEntry, "%s was loaded, but the %s entry point was not found.\n\n\
|
||||
%s may not be exported, or a corrupt version of %s may be in memory. Consider using PView to detect and remove it."
|
||||
|
||||
IDS_FailureMessage, "%s in %s failed.\nReturn code was: 0x%08x"
|
||||
|
||||
IDS_SuccessMessage = "%s in %s succeeded."
|
||||
IDS_SuccessMessage "%s in %s succeeded."
|
||||
}
|
||||
|
|
|
@ -52,6 +52,8 @@ LPCWSTR tszDllInstall = L"DllInstall";
|
|||
#define tszDllInstall szDllInstall
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
LPCTSTR ModuleTitle = _T("RegSvr32");
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
/* $Id$ */
|
||||
|
||||
#include <windows.h>
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "Register a COM component in the registry\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "regsvr32\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "regsvr32.exe\0"
|
||||
#include <reactos/version.rc>
|
||||
|
||||
#include "En.rc"
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
STRINGTABLE DISCARDABLE
|
||||
{
|
||||
IDS_DllNotLoaded, "LoadLibrary failed to load \'%s\'"
|
||||
IDS_DllNotLoaded, "LoadLibrary failed to load '%s'"
|
||||
IDS_MissingEntry, "Missing entry point:%s\nIn %s"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
/* $Id$ */
|
||||
|
||||
#include <windows.h>
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "Run a DLL as an App\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "rundll32\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "rundll32.exe\0"
|
||||
#include <reactos/version.rc>
|
||||
|
||||
#include "En.rc"
|
||||
|
||||
|
|
Loading…
Reference in a new issue