2010-01-23 15:27:47 +00:00
|
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
|
*
|
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
|
* 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 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
2014-02-18 01:34:19 +00:00
|
|
|
|
*
|
2010-01-23 15:27:47 +00:00
|
|
|
|
* 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.
|
2014-02-18 01:34:19 +00:00
|
|
|
|
*
|
2010-01-23 15:27:47 +00:00
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 17:47:58 +00:00
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-23 15:27:47 +00:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-26 17:47:58 +00:00
|
|
|
|
// stdafx.h : Includedatei f<>r Standardsystem-Includedateien,
|
|
|
|
|
// oder projektspezifische Includedateien, die h<>ufig benutzt, aber
|
|
|
|
|
// in unregelm<6C><6D>igen Abst<73>nden ge<67>ndert werden.
|
2005-10-14 07:58:30 +00:00
|
|
|
|
//
|
2010-09-28 20:30:50 +00:00
|
|
|
|
#ifndef SKYCPT_STDAFX_H
|
|
|
|
|
#define SKYCPT_STDAFX_H
|
2005-10-14 07:58:30 +00:00
|
|
|
|
|
2005-11-04 00:42:30 +00:00
|
|
|
|
#ifdef _MSC_VER
|
2005-10-14 07:58:30 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <tchar.h>
|
2005-11-04 00:42:30 +00:00
|
|
|
|
#endif
|
2005-10-14 07:58:30 +00:00
|
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
|
typedef unsigned long uint32;
|
|
|
|
|
typedef unsigned int uint;
|
|
|
|
|
typedef signed char int8;
|
|
|
|
|
typedef signed short int16;
|
|
|
|
|
typedef signed long int32;
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2007-09-22 09:51:33 +00:00
|
|
|
|
#include <string.h>
|
2005-10-14 07:58:30 +00:00
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
struct CptObj {
|
|
|
|
|
uint16 *data;
|
|
|
|
|
uint32 len;
|
|
|
|
|
char *dbgName;
|
|
|
|
|
uint16 type;
|
|
|
|
|
//uint16 id;
|
|
|
|
|
};
|
2005-11-04 00:42:30 +00:00
|
|
|
|
|
|
|
|
|
#endif // __STDAFX_H__
|