mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
#include "resource.h"
|
|
/*
|
|
* Moved all hardcoded strings to En.rc.
|
|
* By Magnus Olsen 2005 magnus@itkonsult-olsen.com
|
|
*/
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
|
|
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"
|
|
|
|
IDS_NoDllSpecified, "No DLL name specified."
|
|
|
|
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_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."
|
|
END
|