en.rc

来自「一个类似windows」· RC 代码 · 共 33 行

RC
33
字号
#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
{

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."
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?