X-Git-Url: http://4ch.mooo.com/gitweb/?p=16.git;a=blobdiff_plain;f=16%2Fkeen456%2FKEEN4-6%2FKEEN4C%2FID_HEADS.H;fp=16%2Fkeen456%2FKEEN4-6%2FKEEN4C%2FID_HEADS.H;h=0000000000000000000000000000000000000000;hp=a73a9264ee28062833ecc99ed8a5218274750e1e;hb=a387b1ff6f02e2da93e870a330af886d1c8233da;hpb=7d1948e210bb7b58af0a0412e71f2a0a0a2010af diff --git a/16/keen456/KEEN4-6/KEEN4C/ID_HEADS.H b/16/keen456/KEEN4-6/KEEN4C/ID_HEADS.H deleted file mode 100755 index a73a9264..00000000 --- a/16/keen456/KEEN4-6/KEEN4C/ID_HEADS.H +++ /dev/null @@ -1,109 +0,0 @@ -/* Reconstructed Commander Keen 4-6 Source Code - * Copyright (C) 2021 K1n9_Duk3 - * - * This file is primarily based on: - * Catacomb 3-D Source Code - * Copyright (C) 1993-2014 Flat Rock Software - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -// ID_GLOB.H - - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#define __ID_GLOB__ - -//-------------------------------------------------------------------------- - -#define KEEN -#define KEEN4 - -#define EXTENSION "CK4" - -extern char far introscn; - -#include "GFXC_CK4.H" -#include "AUDIOCK4.H" - -//-------------------------------------------------------------------------- - -#define TEXTGR 0 -#define CGAGR 1 -#define EGAGR 2 -#define VGAGR 3 - -#define GRMODE CGAGR - -#if GRMODE == EGAGR -#define GREXT "EGA" -#endif -#if GRMODE == CGAGR -#define GREXT "CGA" -#endif - -//#define PROFILE - -// -// ID Engine -// Types.h - Generic types, #defines, etc. -// v1.0d1 -// - -#ifndef __TYPES__ -#define __TYPES__ - -typedef enum {false,true} boolean; -typedef unsigned char byte; -typedef unsigned int word; -typedef unsigned long longword; -typedef byte * Ptr; - -typedef struct - { - int x,y; - } Point; -typedef struct - { - Point ul,lr; - } Rect; - -#define nil ((void *)0) - -#endif - -#include "ID_MM.H" -#include "ID_CA.H" -#include "ID_VW.H" -#include "ID_RF.H" -#include "ID_IN.H" -#include "ID_SD.H" -#include "ID_US.H" - - -void Quit (char *error); // defined in user program -