mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
- add __MINGW_NOTHROW macro (required for shell32 sync used in dirent.h)
svn path=/trunk/; revision=29480
This commit is contained in:
parent
5257ae8196
commit
8dd3300304
1 changed files with 6 additions and 0 deletions
|
@ -164,6 +164,12 @@
|
|||
#define __MINGW_ATTRIB_DEPRECATED
|
||||
#endif /* GNUC >= 3.1 */
|
||||
|
||||
#if __MINGW_GNUC_PREREQ (3, 3)
|
||||
#define __MINGW_NOTHROW __attribute__ ((__nothrow__))
|
||||
#else
|
||||
#define __MINGW_NOTHROW
|
||||
#endif /* GNUC >= 3.3 */
|
||||
|
||||
#ifndef __MSVCRT_VERSION__
|
||||
/* High byte is the major version, low byte is the minor. */
|
||||
# define __MSVCRT_VERSION__ 0x0600
|
||||
|
|
Loading…
Reference in a new issue