Did forget include En.rc :) Modified: trunk/reactos/subsys/system/regsvr32/En.rc Modified: trunk/reactos/subsys/system/regsvr32/regsvr32.c Modified: trunk/reactos/subsys/system/regsvr32/regsvr32.rc Modified: trunk/reactos/subsys/system/rundll32/En.rc Modified: trunk/reactos/subsys/system/rundll32/rundll32.rc _____
Modified: trunk/reactos/subsys/system/regsvr32/En.rc --- trunk/reactos/subsys/system/regsvr32/En.rc 2005-05-12 20:04:02 UTC (rev 15246) +++ trunk/reactos/subsys/system/regsvr32/En.rc 2005-05-12 20:26:34 UTC (rev 15247) @@ -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_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." } _____
Modified: trunk/reactos/subsys/system/regsvr32/regsvr32.c --- trunk/reactos/subsys/system/regsvr32/regsvr32.c 2005-05-12 20:04:02 UTC (rev 15246) +++ trunk/reactos/subsys/system/regsvr32/regsvr32.c 2005-05-12 20:26:34 UTC (rev 15247) @@ -52,6 +52,8 @@
#define tszDllInstall szDllInstall #endif
+ + #include "resource.h"
LPCTSTR ModuleTitle = _T("RegSvr32"); _____
Modified: trunk/reactos/subsys/system/regsvr32/regsvr32.rc --- trunk/reactos/subsys/system/regsvr32/regsvr32.rc 2005-05-12 20:04:02 UTC (rev 15246) +++ trunk/reactos/subsys/system/regsvr32/regsvr32.rc 2005-05-12 20:26:34 UTC (rev 15247) @@ -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" _____
Modified: trunk/reactos/subsys/system/rundll32/En.rc --- trunk/reactos/subsys/system/rundll32/En.rc 2005-05-12 20:04:02 UTC (rev 15246) +++ trunk/reactos/subsys/system/rundll32/En.rc 2005-05-12 20:26:34 UTC (rev 15247) @@ -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" } _____
Modified: trunk/reactos/subsys/system/rundll32/rundll32.rc --- trunk/reactos/subsys/system/rundll32/rundll32.rc 2005-05-12 20:04:02 UTC (rev 15246) +++ trunk/reactos/subsys/system/rundll32/rundll32.rc 2005-05-12 20:26:34 UTC (rev 15247) @@ -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" +