Stub for msvcrt __lconv_init

Uwe Bonnes bon at elektron.ikp.physik.tu-darmstadt.de
Mon Mar 25 11:12:16 CST 2002


Changelog:
	dll/msvcrt/Makefile.in, msvcrt.spec, lconv.c:
	Add stub for __lconv_init()

This is needed for the INSYDE programs to run with builtin msvcrt.

Bye

-- 
Uwe Bonnes                bon at elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik  Schlossgartenstrasse 9  64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
Index: wine/dlls/msvcrt/Makefile.in
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/Makefile.in,v
retrieving revision 1.4
diff -u -r1.4 Makefile.in
--- wine/dlls/msvcrt/Makefile.in	20 Mar 2002 22:19:08 -0000	1.4
+++ wine/dlls/msvcrt/Makefile.in	25 Mar 2002 17:09:35 -0000
@@ -21,6 +21,7 @@
 	exit.c \
 	file.c \
 	heap.c \
+	lconv.c \
 	locale.c \
 	lock.c \
 	main.c \
Index: wine/dlls/msvcrt/msvcrt.spec
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/msvcrt.spec,v
retrieving revision 1.34
diff -u -r1.34 msvcrt.spec
--- wine/dlls/msvcrt/msvcrt.spec	20 Mar 2002 22:50:38 -0000	1.34
+++ wine/dlls/msvcrt/msvcrt.spec	25 Mar 2002 17:09:40 -0000
@@ -104,7 +104,7 @@
 @ stub __lc_codepage
 @ stub __lc_collate
 @ stub __lc_handle
-@ stub __lconv_init
+@ cdecl __lconv_init() __lconv_init
 @ extern __mb_cur_max MSVCRT___mb_cur_max
 @ cdecl __p___argc() __p___argc
 @ cdecl __p___argv() __p___argv
--- /dev/null	Mon Sep 24 03:54:15 2001
+++ wine/dlls/msvcrt/lconv.c	Mon Mar 25 18:08:18 2002
@@ -0,0 +1,19 @@
+/*
+ * msvcrt.dll lconv functions
+ *
+ * just stubs for now 020325
+ */
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
+
+
+/*********************************************************************
+ *		__lconv_init (MSVCRT.@)
+ */
+
+void __lconv_init(void)
+{
+  FIXME(" stub\n");
+}



More information about the wine-patches mailing list