From: Jérôme Gardou Date: Thu, 13 Dec 2012 19:21:30 +0000 (+0000) Subject: [INCLUDE/CRT] X-Git-Tag: backups/ros-csrss@60644~104^2~123 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=bc5d860b9e62b5673006453e6e7ad5029b87580f [INCLUDE/CRT] - _CRT_NON_CONFORMING_SWPRINTFS is not relevant for us. svn path=/trunk/; revision=57909 --- diff --git a/reactos/include/crt/stdio.h b/reactos/include/crt/stdio.h index aa78b2d3f65..53275a809f5 100644 --- a/reactos/include/crt/stdio.h +++ b/reactos/include/crt/stdio.h @@ -322,6 +322,7 @@ extern "C" { #include #endif +#if 0 //this is for MSVCRT80 and higher, which we don't use nor implement #ifdef _CRT_NON_CONFORMING_SWPRINTFS #ifndef __cplusplus #define swprintf _swprintf @@ -329,6 +330,7 @@ extern "C" { #define _swprintf_l __swprintf_l #define _vswprintf_l __vswprintf_l #endif +#endif #endif _CRTIMP wchar_t *__cdecl _wtempnam(const wchar_t *_Directory,const wchar_t *_FilePrefix); diff --git a/reactos/include/crt/wchar.h b/reactos/include/crt/wchar.h index 1ea2ad1c11a..1f4bf4c112f 100644 --- a/reactos/include/crt/wchar.h +++ b/reactos/include/crt/wchar.h @@ -561,6 +561,7 @@ _CRTIMP int __cdecl iswblank(wint_t _C); _CRTIMP int __cdecl __swprintf_l(wchar_t *_Dest,const wchar_t *_Format,_locale_t _Plocinfo,...); _CRTIMP int __cdecl __vswprintf_l(wchar_t *_Dest,const wchar_t *_Format,_locale_t _Plocinfo,va_list _Args); +#if 0 //this is for MSVCRT80 and higher, which we don't use nor implement #ifdef _CRT_NON_CONFORMING_SWPRINTFS #ifndef __cplusplus #define swprintf _swprintf @@ -568,6 +569,7 @@ _CRTIMP int __cdecl iswblank(wint_t _C); #define _swprintf_l __swprintf_l #define _vswprintf_l __vswprintf_l #endif +#endif #endif _CRTIMP wchar_t *__cdecl _wtempnam(const wchar_t *_Directory,const wchar_t *_FilePrefix);