mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-26 03:37:53 +00:00
cbe5f667c2
svn-id: r19414
37 lines
703 B
C++
37 lines
703 B
C++
// stdafx.h : Includedatei für Standardsystem-Includedateien,
|
|
// oder projektspezifische Includedateien, die häufig benutzt, aber
|
|
// in unregelmäßigen Abständen geändert werden.
|
|
//
|
|
#ifndef __STDAFX_H__
|
|
#define __STDAFX_H__
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <tchar.h>
|
|
#endif
|
|
|
|
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>
|
|
#include <assert.h>
|
|
|
|
struct CptObj {
|
|
uint16 *data;
|
|
uint32 len;
|
|
char *dbgName;
|
|
uint16 type;
|
|
//uint16 id;
|
|
};
|
|
|
|
#endif // __STDAFX_H__
|