Daniel Lehman : msvcrt: Add declaration for _sc[w]printf to header.

Alexandre Julliard julliard at winehq.org
Mon Oct 8 13:39:56 CDT 2012


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

Author: Daniel Lehman <dlehman at esri.com>
Date:   Thu Oct  4 12:12:10 2012 -0700

msvcrt: Add declaration for _sc[w]printf to header.

---

 include/msvcrt/stdio.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/msvcrt/stdio.h b/include/msvcrt/stdio.h
index 80439ee..f277516 100644
--- a/include/msvcrt/stdio.h
+++ b/include/msvcrt/stdio.h
@@ -121,6 +121,7 @@ int    __cdecl _snprintf(char*,size_t,const char*,...);
 int    __cdecl _snprintf_s(char*,size_t,size_t,const char*,...);
 char*  __cdecl _tempnam(const char*,const char*);
 int    __cdecl _unlink(const char*);
+int    __cdecl _scprintf(const char*,...);
 int    __cdecl _vscprintf(const char*,__ms_va_list);
 int    __cdecl _vsnprintf(char*,size_t,const char*,__ms_va_list);
 int    __cdecl _vsnprintf_s(char*,size_t,size_t,const char*,__ms_va_list);
@@ -189,6 +190,7 @@ wchar_t* __cdecl _getws(wchar_t*);
 int      __cdecl _putws(const wchar_t*);
 int      __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);
 int      __cdecl _snwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,...);
+int      __cdecl _scwprintf(const wchar_t*,...);
 int      __cdecl _vscwprintf(const wchar_t*,__ms_va_list);
 int      __cdecl _vsnwprintf(wchar_t*,size_t,const wchar_t*,__ms_va_list);
 int      __cdecl _vsnwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,__ms_va_list);




More information about the wine-cvs mailing list