1
0
Fork 0

Merge branch 'svn/trunk' r4293

This commit is contained in:
Patryk Obara 2019-11-21 20:53:08 +01:00
commit cdc193170c
7 changed files with 57 additions and 39 deletions

View file

@ -73,21 +73,27 @@
#pragma warning(disable : 4996)
#endif
typedef double Real64;
typedef double Real64;
/* The internal types */
typedef unsigned char Bit8u;
typedef signed char Bit8s;
typedef unsigned short Bit16u;
typedef signed short Bit16s;
typedef unsigned long Bit32u;
typedef signed long Bit32s;
typedef unsigned __int64 Bit64u;
typedef signed __int64 Bit64s;
typedef unsigned char Bit8u;
typedef signed char Bit8s;
typedef unsigned short Bit16u;
typedef signed short Bit16s;
typedef unsigned int Bit32u;
typedef signed int Bit32s;
typedef unsigned __int64 Bit64u;
typedef signed __int64 Bit64s;
#define sBit32t
#define sBit64t "I64"
#define sBit32fs(a) sBit32t #a
#define sBit64fs(a) sBit64t #a
#ifdef _M_X64
typedef unsigned __int64 Bitu;
typedef signed __int64 Bits;
typedef Bit64u Bitu;
typedef Bit64s Bits;
#define sBitfs sBit64fs
#else // _M_IX86
typedef unsigned int Bitu;
typedef signed int Bits;
typedef Bit32u Bitu;
typedef Bit32s Bits;
#define sBitfs sBit32fs
#endif