mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
Merge version with mingw-w64 trunk version.
svn path=/branches/header-work/; revision=45720
This commit is contained in:
parent
6153abb607
commit
b249cfa837
1 changed files with 9 additions and 7 deletions
|
@ -1,11 +1,13 @@
|
|||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the w64 mingw-runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER within this package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
#ifndef _YVALS
|
||||
#define _YVALS
|
||||
|
||||
#include <_mingw.h>
|
||||
/* TODO, don't include crtdef.h. */
|
||||
#include <crtdefs.h>
|
||||
|
||||
#pragma pack(push,_CRT_PACKING)
|
||||
|
@ -168,10 +170,10 @@ typedef bool _Bool;
|
|||
_STD_END
|
||||
#endif
|
||||
|
||||
#define _LONGLONG __int64
|
||||
#define _ULONGLONG unsigned __int64
|
||||
#define _LLONG_MAX 0x7fffffffffffffff
|
||||
#define _ULLONG_MAX 0xffffffffffffffff
|
||||
#define _LONGLONG /* __MINGW_EXTENSION */ __int64
|
||||
#define _ULONGLONG /* __MINGW_EXTENSION */ unsigned __int64
|
||||
#define _LLONG_MAX 0x7fffffffffffffffLL
|
||||
#define _ULLONG_MAX 0xffffffffffffffffULL
|
||||
|
||||
#define _C2 1
|
||||
|
||||
|
@ -179,8 +181,8 @@ _STD_END
|
|||
#define _MAX_INT_DIG 32
|
||||
#define _MAX_SIG_DIG 36
|
||||
|
||||
typedef _LONGLONG _Longlong;
|
||||
typedef _ULONGLONG _ULonglong;
|
||||
__MINGW_EXTENSION typedef _LONGLONG _Longlong;
|
||||
__MINGW_EXTENSION typedef _ULONGLONG _ULonglong;
|
||||
|
||||
#define _Filet _iobuf
|
||||
|
||||
|
|
Loading…
Reference in a new issue