reactos/lib/msvcrt
diff -u -r1.37 -r1.38
--- msvcrt.def 18 Dec 2004 22:15:07 -0000 1.37
+++ msvcrt.def 20 Dec 2004 17:32:04 -0000 1.38
@@ -1,4 +1,4 @@
-; $Id: msvcrt.def,v 1.37 2004/12/18 22:15:07 gvg Exp $
+; $Id: msvcrt.def,v 1.38 2004/12/20 17:32:04 gvg Exp $
;
; ReactOS MSVCRT Compatibility Library
;
@@ -119,9 +119,9 @@
__isascii
__iscsym
__iscsymf
-;__lc_codepage
+__lc_codepage
__lc_collate_cp
-;__lc_handle
+__lc_handle
;__lconv_init
__mb_cur_max DATA
__p___argc
@@ -156,14 +156,14 @@
__pioinfo
;__pxcptinfoptrs
__set_app_type
-;__setlc_active
+__setlc_active DATA
__setusermatherr
__threadhandle
__threadid
__toascii
__unDName
;__unDNameEx
-;__unguarded_readlc_active
+__unguarded_readlc_active DATA
__wargv
__wgetmainargs
__winitenv
reactos/lib/msvcrt/locale
diff -u -r1.8 -r1.9
--- locale.c 15 Aug 2004 18:16:36 -0000 1.8
+++ locale.c 20 Dec 2004 17:32:05 -0000 1.9
@@ -9,6 +9,8 @@
#define NDEBUG
#include <msvcrt/msvcrtdbg.h>
+unsigned int __setlc_active;
+unsigned int __unguarded_readlc_active;
int _current_category; /* used by setlocale */
const char *_current_locale;
@@ -175,3 +177,27 @@
DPRINT1("__lc_collate_cp - stub\n");
return;
}
+
+
+/*********************************************************************
+ * __lc_handle (MSVCRT.@)
+ *
+ * @unimplemented
+ */
+void __lc_handle(void)
+{
+DPRINT1("__lc_handle - stub\n");
+return;
+}
+
+
+/*********************************************************************
+ * __lc_codepage (MSVCRT.@)
+ *
+ * @unimplemented
+ */
+void __lc_codepage(void)
+{
+DPRINT1("__lc_codepage - stub\n");
+return;
+}