* incude/wchar.h (_wsystem) Declare.
(_wputenv) Declare. (_wgetenv): Declare. (_wsearchenv): Declare. (_wmakepath): Declare. (_wsplitpath): Declare. (_wfullpath): Declare. * incude/stdlib.h (_wsystem) Declare. (_wputenv, _wgetenv, _wsearchenv, _wmakepath, _wsplitpath, _wfullpath): Move into _WSTDLIB_DEFINED guard. * include/tchar.h (_tsystem): New UNICODE mapping define.
This commit is contained in:
parent
0986f3e208
commit
f2a9580699
@ -1,3 +1,17 @@
|
|||||||
|
2007-07-12 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* incude/wchar.h (_wsystem) Declare.
|
||||||
|
(_wputenv) Declare.
|
||||||
|
(_wgetenv): Declare.
|
||||||
|
(_wsearchenv): Declare.
|
||||||
|
(_wmakepath): Declare.
|
||||||
|
(_wsplitpath): Declare.
|
||||||
|
(_wfullpath): Declare.
|
||||||
|
* incude/stdlib.h (_wsystem) Declare.
|
||||||
|
(_wputenv, _wgetenv, _wsearchenv, _wmakepath, _wsplitpath,
|
||||||
|
_wfullpath): Move into _WSTDLIB_DEFINED guard.
|
||||||
|
* include/tchar.h (_tsystem): New UNICODE mapping define.
|
||||||
|
|
||||||
2007-06-29 Danny Smith <dannysmith@users.sourceforge.net>
|
2007-06-29 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* mingwex/gdtoa/mingw_snprintf.c: New file.
|
* mingwex/gdtoa/mingw_snprintf.c: New file.
|
||||||
|
@ -318,14 +318,22 @@ _CRTIMP unsigned long __cdecl __MINGW_NOTHROW strtoul (const char*, char**, int)
|
|||||||
|
|
||||||
#ifndef _WSTDLIB_DEFINED
|
#ifndef _WSTDLIB_DEFINED
|
||||||
/* also declared in wchar.h */
|
/* also declared in wchar.h */
|
||||||
|
_CRTIMP long __cdecl __MINGW_NOTHROW wcstol (const wchar_t*, wchar_t**, int);
|
||||||
|
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW wcstoul (const wchar_t*, wchar_t**, int);
|
||||||
_CRTIMP double __cdecl __MINGW_NOTHROW wcstod (const wchar_t*, wchar_t**);
|
_CRTIMP double __cdecl __MINGW_NOTHROW wcstod (const wchar_t*, wchar_t**);
|
||||||
#if !defined __NO_ISOCEXT /* in libmingwex.a */
|
#if !defined __NO_ISOCEXT /* in libmingwex.a */
|
||||||
float __cdecl __MINGW_NOTHROW wcstof( const wchar_t * __restrict__, wchar_t ** __restrict__);
|
float __cdecl __MINGW_NOTHROW wcstof( const wchar_t * __restrict__, wchar_t ** __restrict__);
|
||||||
long double __cdecl __MINGW_NOTHROW wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
long double __cdecl __MINGW_NOTHROW wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
||||||
#endif /* __NO_ISOCEXT */
|
#endif /* __NO_ISOCEXT */
|
||||||
|
#ifdef __MSVCRT__
|
||||||
_CRTIMP long __cdecl __MINGW_NOTHROW wcstol (const wchar_t*, wchar_t**, int);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wgetenv(const wchar_t*);
|
||||||
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW wcstoul (const wchar_t*, wchar_t**, int);
|
_CRTIMP int __cdecl __MINGW_NOTHROW _wputenv(const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wsearchenv(const wchar_t*, const wchar_t*, wchar_t*);
|
||||||
|
_CRTIMP int __cdecl __MINGW_NOTHROW _wsystem(const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wmakepath(wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*);
|
||||||
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wfullpath (wchar_t*, const wchar_t*, size_t);
|
||||||
|
#endif
|
||||||
#define _WSTDLIB_DEFINED
|
#define _WSTDLIB_DEFINED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -420,12 +428,6 @@ _CRTIMP __int64 __cdecl __MINGW_NOTHROW _wtoi64(const wchar_t *);
|
|||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _i64tow(__int64, wchar_t *, int);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _i64tow(__int64, wchar_t *, int);
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ui64tow(unsigned __int64, wchar_t *, int);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ui64tow(unsigned __int64, wchar_t *, int);
|
||||||
|
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wgetenv(const wchar_t*);
|
|
||||||
_CRTIMP int __cdecl __MINGW_NOTHROW _wputenv(const wchar_t*);
|
|
||||||
_CRTIMP void __cdecl __MINGW_NOTHROW _wsearchenv(const wchar_t*, const wchar_t*, wchar_t*);
|
|
||||||
_CRTIMP void __cdecl __MINGW_NOTHROW _wmakepath(wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*);
|
|
||||||
_CRTIMP void __cdecl __MINGW_NOTHROW _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*);
|
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wfullpath (wchar_t*, const wchar_t*, size_t);
|
|
||||||
|
|
||||||
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotl(unsigned int, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotl(unsigned int, int) __MINGW_ATTRIB_CONST;
|
||||||
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotr(unsigned int, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotr(unsigned int, int) __MINGW_ATTRIB_CONST;
|
||||||
|
@ -188,6 +188,7 @@ typedef wchar_t _TCHAR;
|
|||||||
#define _tgetenv _wgetenv
|
#define _tgetenv _wgetenv
|
||||||
#define _tputenv _wputenv
|
#define _tputenv _wputenv
|
||||||
#define _tsearchenv _wsearchenv
|
#define _tsearchenv _wsearchenv
|
||||||
|
#define _tsystem _wsystem
|
||||||
#define _tmakepath _wmakepath
|
#define _tmakepath _wmakepath
|
||||||
#define _tsplitpath _wsplitpath
|
#define _tsplitpath _wsplitpath
|
||||||
#define _tfullpath _wfullpath
|
#define _tfullpath _wfullpath
|
||||||
@ -282,6 +283,7 @@ typedef char _TCHAR;
|
|||||||
#define _tgetenv getenv
|
#define _tgetenv getenv
|
||||||
#define _tputenv _putenv
|
#define _tputenv _putenv
|
||||||
#define _tsearchenv _searchenv
|
#define _tsearchenv _searchenv
|
||||||
|
#define _tsystem system
|
||||||
#define _tmakepath _makepath
|
#define _tmakepath _makepath
|
||||||
#define _tsplitpath _splitpath
|
#define _tsplitpath _splitpath
|
||||||
#define _tfullpath _fullpath
|
#define _tfullpath _fullpath
|
||||||
|
@ -152,15 +152,23 @@ int __cdecl __MINGW_NOTHROW vswscanf (const wchar_t * __restrict__,
|
|||||||
|
|
||||||
#define _WSTDIO_DEFINED
|
#define _WSTDIO_DEFINED
|
||||||
#endif /* _WSTDIO_DEFINED */
|
#endif /* _WSTDIO_DEFINED */
|
||||||
|
|
||||||
#ifndef _WSTDLIB_DEFINED /* also declared in stdlib.h */
|
#ifndef _WSTDLIB_DEFINED /* also declared in stdlib.h */
|
||||||
_CRTIMP long __cdecl __MINGW_NOTHROW wcstol (const wchar_t*, wchar_t**, int);
|
_CRTIMP long __cdecl __MINGW_NOTHROW wcstol (const wchar_t*, wchar_t**, int);
|
||||||
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW wcstoul (const wchar_t*, wchar_t**, int);
|
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW wcstoul (const wchar_t*, wchar_t**, int);
|
||||||
_CRTIMP double __cdecl __MINGW_NOTHROW wcstod (const wchar_t*, wchar_t**);
|
_CRTIMP double __cdecl __MINGW_NOTHROW wcstod (const wchar_t*, wchar_t**);
|
||||||
#if !defined __NO_ISOCEXT /* in libmingwex.a */
|
#if !defined __NO_ISOCEXT /* in libmingwex.a */
|
||||||
float __cdecl __MINGW_NOTHROW wcstof (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
float __cdecl __MINGW_NOTHROW wcstof (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
||||||
long double __cdecl __MINGW_NOTHROW wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
long double __cdecl __MINGW_NOTHROW wcstold (const wchar_t * __restrict__, wchar_t ** __restrict__);
|
||||||
#endif /* __NO_ISOCEXT */
|
#endif /* __NO_ISOCEXT */
|
||||||
|
#ifdef __MSVCRT__
|
||||||
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wgetenv(const wchar_t*);
|
||||||
|
_CRTIMP int __cdecl __MINGW_NOTHROW _wputenv(const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wsearchenv(const wchar_t*, const wchar_t*, wchar_t*);
|
||||||
|
_CRTIMP int __cdecl __MINGW_NOTHROW _wsystem(const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wmakepath(wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*);
|
||||||
|
_CRTIMP void __cdecl __MINGW_NOTHROW _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*);
|
||||||
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wfullpath (wchar_t*, const wchar_t*, size_t);
|
||||||
|
#endif
|
||||||
#define _WSTDLIB_DEFINED
|
#define _WSTDLIB_DEFINED
|
||||||
#endif /* _WSTDLIB_DEFINED */
|
#endif /* _WSTDLIB_DEFINED */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user