git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -224,12 +224,26 @@
|
||||
int wxCRT_SscanfW(const wchar_t *str, const wchar_t *format, ...);
|
||||
int wxCRT_FscanfW(FILE *stream, const wchar_t *format, ...);
|
||||
int wxCRT_VsscanfW(const wchar_t *str, const wchar_t *format, va_list ap);
|
||||
#else
|
||||
#ifdef __VMS
|
||||
#if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
|
||||
# define wxCRT_ScanfW std::wscanf
|
||||
# define wxCRT_SscanfW std::swscanf
|
||||
# define wxCRT_FscanfW std::fwscanf
|
||||
# define wxCRT_VsscanfW std::vswscanf
|
||||
#else
|
||||
#define wxCRT_ScanfW wscanf
|
||||
#define wxCRT_SscanfW swscanf
|
||||
#define wxCRT_FscanfW fwscanf
|
||||
#define wxCRT_VsscanfW vswscanf
|
||||
#endif
|
||||
#else
|
||||
#define wxCRT_ScanfW wscanf
|
||||
#define wxCRT_SscanfW swscanf
|
||||
#define wxCRT_FscanfW fwscanf
|
||||
#define wxCRT_VsscanfW vswscanf
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// user-friendly wrappers to CRT functions
|
||||
|
Reference in New Issue
Block a user