Daniel Lehman : include: Add wcstof.

Alexandre Julliard julliard at winehq.org
Tue May 1 15:15:45 CDT 2018


Module: wine
Branch: master
Commit: 1863ec6414ca688076b9341bf4ac81356592de12
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=1863ec6414ca688076b9341bf4ac81356592de12

Author: Daniel Lehman <dlehman at esri.com>
Date:   Fri Feb 16 07:22:42 2018 -0800

include: Add wcstof.

Signed-off-by: Daniel Lehman <dlehman at esri.com>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/msvcrt/stdlib.h | 1 +
 include/msvcrt/wchar.h  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h
index 892f36a..a325187 100644
--- a/include/msvcrt/stdlib.h
+++ b/include/msvcrt/stdlib.h
@@ -240,6 +240,7 @@ __msvcrt_long __cdecl _wtol(const wchar_t*);
 size_t        __cdecl mbstowcs(wchar_t*,const char*,size_t);
 errno_t       __cdecl mbstowcs_s(size_t*,wchar_t*,size_t,const char*,size_t);
 int           __cdecl mbtowc(wchar_t*,const char*,size_t);
+float         __cdecl wcstof(const wchar_t*,wchar_t**);
 double        __cdecl wcstod(const wchar_t*,wchar_t**);
 __msvcrt_long __cdecl wcstol(const wchar_t*,wchar_t**,int);
 size_t        __cdecl wcstombs(char*,const wchar_t*,size_t);
diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h
index 7f5428f..a679724 100644
--- a/include/msvcrt/wchar.h
+++ b/include/msvcrt/wchar.h
@@ -398,6 +398,7 @@ __msvcrt_long __cdecl _wtol(const wchar_t*);
 size_t        __cdecl mbstowcs(wchar_t*,const char*,size_t);
 errno_t       __cdecl mbstowcs_s(size_t*,wchar_t*,size_t,const char*,size_t);
 int           __cdecl mbtowc(wchar_t*,const char*,size_t);
+float         __cdecl wcstof(const wchar_t*,wchar_t**);
 double        __cdecl wcstod(const wchar_t*,wchar_t**);
 __msvcrt_long __cdecl wcstol(const wchar_t*,wchar_t**,int);
 size_t        __cdecl wcstombs(char*,const wchar_t*,size_t);




More information about the wine-cvs mailing list