=?UTF-8?Q?Iv=C3=A1n=20Matellanes=20?=: msvcrt: Added _getwc_nolock implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Nov 6 09:22:40 CST 2014


Module: wine
Branch: master
Commit: fb4248315f31d54460fbf6f3e31cec65325f2af4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fb4248315f31d54460fbf6f3e31cec65325f2af4

Author: Iván Matellanes <matellanesivan at gmail.com>
Date:   Wed Nov  5 22:55:50 2014 +0100

msvcrt: Added _getwc_nolock implementation.

---

 dlls/msvcr100/msvcr100.spec | 1 +
 dlls/msvcr110/msvcr110.spec | 1 +
 dlls/msvcr120/msvcr120.spec | 1 +
 dlls/msvcr80/msvcr80.spec   | 1 +
 dlls/msvcr90/msvcr90.spec   | 1 +
 include/msvcrt/stdio.h      | 1 +
 6 files changed, 6 insertions(+)

diff --git a/dlls/msvcr100/msvcr100.spec b/dlls/msvcr100/msvcr100.spec
index 931d826..0fbe506 100644
--- a/dlls/msvcr100/msvcr100.spec
+++ b/dlls/msvcr100/msvcr100.spec
@@ -906,6 +906,7 @@
 @ cdecl _getptd()
 @ stub _getsystime(ptr)
 @ cdecl _getw(ptr) MSVCRT__getw
+@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
 @ stub _getwch
 @ stub _getwch_nolock
 @ stub _getwche
diff --git a/dlls/msvcr110/msvcr110.spec b/dlls/msvcr110/msvcr110.spec
index 3939ccf..368ca37 100644
--- a/dlls/msvcr110/msvcr110.spec
+++ b/dlls/msvcr110/msvcr110.spec
@@ -1253,6 +1253,7 @@
 @ cdecl _getptd()
 @ stub _getsystime(ptr)
 @ cdecl _getw(ptr) MSVCRT__getw
+@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
 @ stub _getwch
 @ stub _getwch_nolock
 @ stub _getwche
diff --git a/dlls/msvcr120/msvcr120.spec b/dlls/msvcr120/msvcr120.spec
index 2ee3800..2b647b8 100644
--- a/dlls/msvcr120/msvcr120.spec
+++ b/dlls/msvcr120/msvcr120.spec
@@ -1251,6 +1251,7 @@
 @ cdecl _getptd()
 @ stub _getsystime(ptr)
 @ cdecl _getw(ptr) MSVCRT__getw
+@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
 @ stub _getwch
 @ stub _getwch_nolock
 @ stub _getwche
diff --git a/dlls/msvcr80/msvcr80.spec b/dlls/msvcr80/msvcr80.spec
index 36421f3..0137ac4 100644
--- a/dlls/msvcr80/msvcr80.spec
+++ b/dlls/msvcr80/msvcr80.spec
@@ -580,6 +580,7 @@
 @ cdecl _getptd()
 @ stub _getsystime(ptr)
 @ cdecl _getw(ptr) MSVCRT__getw
+@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
 @ stub _getwch
 @ stub _getwch_nolock
 @ stub _getwche
diff --git a/dlls/msvcr90/msvcr90.spec b/dlls/msvcr90/msvcr90.spec
index e9790be..c028cba 100644
--- a/dlls/msvcr90/msvcr90.spec
+++ b/dlls/msvcr90/msvcr90.spec
@@ -557,6 +557,7 @@
 @ cdecl _getptd()
 @ stub _getsystime(ptr)
 @ cdecl _getw(ptr) MSVCRT__getw
+@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
 @ stub _getwch
 @ stub _getwch_nolock
 @ stub _getwche
diff --git a/include/msvcrt/stdio.h b/include/msvcrt/stdio.h
index 9a2f338..8b23def 100644
--- a/include/msvcrt/stdio.h
+++ b/include/msvcrt/stdio.h
@@ -203,6 +203,7 @@ wint_t   __cdecl _fgetwc_nolock(FILE*);
 wint_t   __cdecl _fgetwchar(void);
 wint_t   __cdecl _fputwc_nolock(wint_t,FILE*);
 wint_t   __cdecl _fputwchar(wint_t);
+wint_t   __cdecl _getwc_nolock(FILE*);
 wchar_t* __cdecl _getws(wchar_t*);
 int      __cdecl _putws(const wchar_t*);
 int      __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);




More information about the wine-cvs mailing list