1
0
Fork 0

Hopefully final config setting now

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@211
This commit is contained in:
Sjoerd van der Berg 2002-08-24 09:21:38 +00:00
parent 3cfd70ef88
commit 7d23bccc72

View file

@ -19,32 +19,33 @@
#if !defined __DOSBOX_H
#define __DOSBOX_H
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 double Real64;
void E_Exit(char * message,...);
void S_Warn(char * message,...);
/* 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 double Real64;
#if defined(_MSC_VER)
typedef unsigned __int64 Bit64u;
typedef signed __int64 Bit64s;
typedef unsigned __int64 Bit64u;
typedef signed __int64 Bit64s;
#else
typedef unsigned long long int Bit64u;
typedef signed long long int Bit64s;
typedef unsigned long long Bit64u;
typedef signed long long Bit64s;
#endif
typedef unsigned int Bitu;
typedef signed int Bits;
#include <stddef.h>
void E_Exit(char * message,...);
void S_Warn(char * message,...);
#include "../config.h"
#include "config.h"
#include "../settings.h"
typedef Bitu (LoopHandler)(void);
@ -54,5 +55,7 @@ void DOSBOX_SetNormalLoop();
void DOSBOX_Init(int argc, char* argv[]);
void DOSBOX_StartUp(void);
#endif