Author: tkreuzer
Date: Thu Feb 10 20:26:41 2011
New Revision: 50655
URL:
http://svn.reactos.org/svn/reactos?rev=50655&view=rev
Log:
[FREELDR]
Fix broken release version
Modified:
trunk/reactos/boot/freeldr/freeldr/debug.c
trunk/reactos/boot/freeldr/freeldr/freeldr.c
Modified: trunk/reactos/boot/freeldr/freeldr/debug.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/debug…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/debug.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/debug.c [iso-8859-1] Thu Feb 10 20:26:41 2011
@@ -66,19 +66,6 @@
BOOLEAN DebugStartOfLine = TRUE;
-// We need to emulate these, because the original ones don't work in freeldr
-int __cdecl wctomb(char *mbchar, wchar_t wchar)
-{
- *mbchar = wchar;
- return 1;
-}
-
-int __cdecl mbtowc (wchar_t *wchar, const char *mbchar, size_t count)
-{
- *wchar = *mbchar;
- return 1;
-}
-
VOID DebugInit(VOID)
{
if (DebugPort & RS232)
Modified: trunk/reactos/boot/freeldr/freeldr/freeldr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/freel…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/freeldr.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/freeldr.c [iso-8859-1] Thu Feb 10 20:26:41 2011
@@ -53,3 +53,16 @@
#endif
RunLoader();
}
+
+// We need to emulate these, because the original ones don't work in freeldr
+int __cdecl wctomb(char *mbchar, wchar_t wchar)
+{
+ *mbchar = wchar;
+ return 1;
+}
+
+int __cdecl mbtowc (wchar_t *wchar, const char *mbchar, size_t count)
+{
+ *wchar = *mbchar;
+ return 1;
+}