gzdoom/code/Doomtype.h

83 lines
1.9 KiB
C
Raw Normal View History

1998-04-07 00:00:00 +00:00
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: doomtype.h,v 1.2 1997/12/29 19:50:48 pekangas Exp $
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// This source is available for distribution and/or modification
// only under the terms of the DOOM Source Code License as
// published by id Software. All rights reserved.
//
// The source is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
// for more details.
//
// DESCRIPTION:
// Simple basic typedefs, isolated here to make it easier
// separating modules.
//
//-----------------------------------------------------------------------------
#ifndef __DOOMTYPE__
#define __DOOMTYPE__
#ifndef __BYTEBOOL__
#define __BYTEBOOL__
1998-07-14 00:00:00 +00:00
// [RH] Some windows includes already defines this
#if !defined(_WINDEF_) && !defined(__wtypes_h__)
typedef int BOOL;
#endif
#ifndef __cplusplus
#define false (0)
#define true (1)
1998-04-07 00:00:00 +00:00
#endif
typedef unsigned char byte;
#endif
1998-07-14 00:00:00 +00:00
#if defined(_MSC_VER) || defined(__WATCOMC__)
#define STACK_ARGS __cdecl
#else
#define STACK_ARGS
#endif
1998-04-07 00:00:00 +00:00
// Predefined with some OS.
1998-07-14 00:00:00 +00:00
#ifdef __GNUC__
1998-04-07 00:00:00 +00:00
#include <values.h>
#else
/* [Petteri] Don't redefine if we already have these */
#ifndef MAXCHAR
#define MAXCHAR ((char)0x7f)
#define MAXSHORT ((short)0x7fff)
// Max pos 32-bit int.
#define MAXINT ((int)0x7fffffff)
#define MAXLONG ((long)0x7fffffff)
#define MINCHAR ((char)0x80)
#define MINSHORT ((short)0x8000)
// Max negative 32-bit integer.
#define MININT ((int)0x80000000)
#define MINLONG ((long)0x80000000)
#endif
#endif
#ifndef NOASM
#define USEASM
#endif
1998-07-14 00:00:00 +00:00
// [RH] This gets used all over; define it here:
1998-04-07 00:00:00 +00:00
int Printf (const char *, ...);
1998-07-14 00:00:00 +00:00
// [RH] Same here:
int DPrintf (const char *, ...);
1998-04-07 00:00:00 +00:00
1998-04-07 00:00:00 +00:00
#endif