2005-10-14 07:58:30 +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-11-04 00:42:30 +00:00
|
|
|
|
#ifndef __STDAFX_H__
|
|
|
|
|
#define __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>
|
|
|
|
|
#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__
|