1
0
Fork 0

Detect sizeof the dosbox data types

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1771
This commit is contained in:
Sjoerd van der Berg 2004-04-20 06:53:36 +00:00
parent 67253f9e9b
commit c1a88974e0
4 changed files with 66 additions and 21 deletions

View file

@ -39,3 +39,17 @@
#define ENVIRON_LINKED 1
#define GCC_ATTRIBUTE(x) /* attribute not supported */
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 int Bitu;
typedef signed int Bits;