2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#ifndef STDAFX_H
|
|
|
|
#define STDAFX_H
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-24 00:55:35 +00:00
|
|
|
/* It seems that we need to include stdint.h before anything else
|
|
|
|
* We need INT64_MAX, which for most systems comes from stdint.h. However, MSVC
|
|
|
|
* does not have stdint.h and apparently neither does MorphOS, so define
|
|
|
|
* INT64_MAX for them ourselves. */
|
|
|
|
#if !defined(_MSC_VER) && !defined( __MORPHOS__)
|
|
|
|
# define __STDC_LIMIT_MACROS
|
|
|
|
# include <stdint.h>
|
|
|
|
#else
|
|
|
|
# define INT64_MAX 9223372036854775807LL
|
|
|
|
#endif
|
|
|
|
|
2007-02-04 11:14:42 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <climits>
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
|
|
|
|
* strgen always runs from terminal and don't need a window for asserts */
|
2005-12-09 13:17:31 +00:00
|
|
|
#if !defined(__APPLE__) || defined(STRGEN)
|
2007-02-04 11:14:42 +00:00
|
|
|
# include <cassert>
|
2005-07-28 21:47:41 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
# include "os/macosx/macos.h"
|
2005-07-28 21:47:41 +00:00
|
|
|
#endif
|
|
|
|
|
2005-01-03 14:33:59 +00:00
|
|
|
#if defined(UNIX) || defined(__MINGW32__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <sys/types.h>
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2004-12-23 14:46:16 +00:00
|
|
|
#if defined(__OS2__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <types.h>
|
2006-08-04 23:27:36 +00:00
|
|
|
# define strcasecmp stricmp
|
2004-12-23 14:46:16 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#ifdef __BEOS__
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <SupportDefs.h>
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2004-11-17 09:07:29 +00:00
|
|
|
#ifdef SUNOS
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <alloca.h>
|
2004-11-17 09:07:29 +00:00
|
|
|
#endif
|
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
#ifdef __MORPHOS__
|
2007-02-04 11:20:24 +00:00
|
|
|
/* MorphOS defines certain Amiga defines per default, we undefine them
|
|
|
|
* here to make the rest of source less messy and more clear what is
|
|
|
|
* required for morphos and what for AmigaOS */
|
2005-10-03 22:16:30 +00:00
|
|
|
# ifdef amigaos
|
|
|
|
# undef amigaos
|
|
|
|
# endif
|
|
|
|
# ifdef __amigaos__
|
|
|
|
# undef __amigaos__
|
|
|
|
# endif
|
|
|
|
# ifdef __AMIGA__
|
|
|
|
# undef __AMIGA__
|
|
|
|
# endif
|
|
|
|
# ifdef AMIGA
|
|
|
|
# undef AMIGA
|
|
|
|
# endif
|
|
|
|
# ifdef amiga
|
|
|
|
# undef amiga
|
|
|
|
# endif
|
2004-12-22 21:12:36 +00:00
|
|
|
#endif /* __MORPHOS__ */
|
|
|
|
|
2006-02-12 14:31:33 +00:00
|
|
|
#ifdef __APPLE__
|
2006-03-21 23:18:43 +00:00
|
|
|
# include "os/macosx/osx_stdafx.h"
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Make endian swapping use Apple's macros to increase speed (since it will use hardware swapping if available)
|
2007-01-05 20:46:53 +00:00
|
|
|
* Even though they should return uint16 and uint32, we get warnings if we don't cast those (why?) */
|
|
|
|
# define BSWAP32(x) ((uint32)Endian32_Swap(x))
|
|
|
|
# define BSWAP16(x) ((uint16)Endian16_Swap(x))
|
2006-02-12 14:31:33 +00:00
|
|
|
#else
|
2006-03-21 23:18:43 +00:00
|
|
|
# define BSWAP32(x) ((((x) >> 24) & 0xFF) | (((x) >> 8) & 0xFF00) | (((x) << 8) & 0xFF0000) | (((x) << 24) & 0xFF000000))
|
|
|
|
# define BSWAP16(x) ((x) >> 8 | (x) << 8)
|
|
|
|
#endif /* __APPLE__ */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-08 23:46:25 +00:00
|
|
|
#if defined(PSP)
|
|
|
|
/* PSP can only have 10 file-descriptors open at any given time, but this
|
|
|
|
* switch only limits reads via the Fio system. So keep 2 fds free for things
|
|
|
|
* like saving a game. */
|
|
|
|
#define LIMITED_FDS 8
|
|
|
|
#endif /* PSP */
|
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* by default we use [] var arrays */
|
2004-08-09 17:04:08 +00:00
|
|
|
#define VARARRAY_SIZE
|
|
|
|
|
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Stuff for GCC */
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(__GNUC__)
|
2006-06-10 08:37:41 +00:00
|
|
|
# define NORETURN __attribute__ ((noreturn))
|
2004-08-09 17:04:08 +00:00
|
|
|
# define FORCEINLINE inline
|
|
|
|
# define CDECL
|
|
|
|
# define __int64 long long
|
2005-05-30 22:16:05 +00:00
|
|
|
# define NOT_REACHED() assert(0)
|
2004-08-09 17:04:08 +00:00
|
|
|
# define GCC_PACK __attribute__((packed))
|
|
|
|
|
2005-10-03 22:16:30 +00:00
|
|
|
# if (__GNUC__ == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
# undef VARARRAY_SIZE
|
|
|
|
# define VARARRAY_SIZE 0
|
|
|
|
# endif
|
2005-10-03 22:16:30 +00:00
|
|
|
#endif /* __GNUC__ */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-23 14:46:16 +00:00
|
|
|
#if defined(__WATCOMC__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define NORETURN
|
|
|
|
# define FORCEINLINE inline
|
|
|
|
# define CDECL
|
|
|
|
# define NOT_REACHED() assert(0)
|
|
|
|
# define GCC_PACK
|
|
|
|
# include <malloc.h>
|
|
|
|
#endif /* __WATCOMC__ */
|
2004-12-23 14:46:16 +00:00
|
|
|
|
2004-12-23 22:31:46 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <malloc.h> // alloca()
|
2004-12-23 22:31:46 +00:00
|
|
|
#endif
|
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Stuff for MSVC */
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(_MSC_VER)
|
2005-11-26 13:23:16 +00:00
|
|
|
# pragma once
|
|
|
|
# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
# pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied
|
2007-01-10 18:56:51 +00:00
|
|
|
# pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union
|
2006-11-18 00:14:43 +00:00
|
|
|
|
2006-02-05 09:28:06 +00:00
|
|
|
# if _MSC_VER >= 1400 // MSVC 2005 safety checks
|
|
|
|
# pragma warning(disable: 4996) // 'strdup' was declared deprecated
|
|
|
|
# define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions
|
2007-02-04 11:30:22 +00:00
|
|
|
# else /* _MSC_VER >= 1400 ( <1400 for MSVC2003) */
|
|
|
|
# pragma warning(disable: 4292) // compiler limit : terminating debug information emission for enum 'StringIdEnum' with member 'STR_801D_COAL_CAR'
|
2006-02-05 09:28:06 +00:00
|
|
|
# endif /* _MSC_VER >= 1400 */
|
2005-11-26 13:23:16 +00:00
|
|
|
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <malloc.h> // alloca()
|
2004-08-09 17:04:08 +00:00
|
|
|
# define NORETURN __declspec(noreturn)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define FORCEINLINE __forceinline
|
|
|
|
# define inline _inline
|
|
|
|
# define CDECL _cdecl
|
2005-05-30 22:16:05 +00:00
|
|
|
# if defined(_DEBUG)
|
|
|
|
# define NOT_REACHED() assert(0)
|
|
|
|
# else
|
|
|
|
# define NOT_REACHED() _assume(0)
|
2005-10-03 22:16:30 +00:00
|
|
|
# endif /* _DEBUG */
|
|
|
|
int CDECL snprintf(char *str, size_t size, const char *format, ...);
|
|
|
|
# if _MSC_VER < 1400
|
|
|
|
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
2005-05-30 22:16:05 +00:00
|
|
|
# endif
|
2005-10-03 22:16:30 +00:00
|
|
|
|
|
|
|
# if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
|
|
|
|
# ifndef _W64
|
|
|
|
# define _W64
|
|
|
|
# endif
|
|
|
|
typedef _W64 int INT_PTR, *PINT_PTR;
|
|
|
|
typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
|
|
|
|
# endif /* WIN32 && !_WIN64 && !WIN64 */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
# define GCC_PACK
|
2005-11-26 12:57:42 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* This is needed to zlib uses the stdcall calling convention on visual studio */
|
2005-11-26 12:57:42 +00:00
|
|
|
# if defined(WITH_ZLIB) || defined(WITH_PNG)
|
|
|
|
# ifndef ZLIB_WINAPI
|
|
|
|
# define ZLIB_WINAPI
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2006-01-26 17:32:49 +00:00
|
|
|
# define strcasecmp stricmp
|
2006-08-20 11:18:46 +00:00
|
|
|
# define strncasecmp strnicmp
|
2007-02-04 11:20:24 +00:00
|
|
|
/* suppress: warning C4005: 'offsetof' : macro redefinition (VC8) */
|
2005-10-03 22:16:30 +00:00
|
|
|
#endif /* defined(_MSC_VER) */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-21 14:19:18 +00:00
|
|
|
#if defined(WINCE)
|
|
|
|
# define strdup _strdup
|
|
|
|
#endif /* WINCE */
|
|
|
|
|
2006-11-28 14:42:31 +00:00
|
|
|
/* NOTE: the string returned by these functions is only valid until the next
|
|
|
|
* call to the same function and is not thread- or reentrancy-safe */
|
|
|
|
#if !defined(STRGEN)
|
|
|
|
# if defined(WIN32) || defined(WIN64)
|
2007-01-21 14:19:18 +00:00
|
|
|
# if defined(WINCE)
|
|
|
|
/* XXX - WinCE without MSVCRT doesn't support wfopen, so it seems */
|
|
|
|
# else
|
|
|
|
# define fopen(file, mode) _wfopen(OTTD2FS(file), L ## mode)
|
|
|
|
# endif
|
2006-11-28 14:42:31 +00:00
|
|
|
const char *FS2OTTD(const wchar_t *name);
|
|
|
|
const wchar_t *OTTD2FS(const char *name);
|
|
|
|
# else
|
|
|
|
# define fopen(file, mode) fopen(OTTD2FS(file), mode)
|
|
|
|
const char *FS2OTTD(const char *name);
|
|
|
|
const char *OTTD2FS(const char *name);
|
|
|
|
# endif /* WIN32 */
|
|
|
|
#endif /* STRGEN */
|
2005-10-02 22:39:56 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Windows has always LITTLE_ENDIAN */
|
2005-10-02 22:39:56 +00:00
|
|
|
#if defined(WIN32) || defined(__OS2__) || defined(WIN64)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define TTD_LITTLE_ENDIAN
|
2004-09-04 14:20:12 +00:00
|
|
|
#else
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Else include endian[target/host].h, which has the endian-type, autodetected by the Makefile */
|
2006-09-06 14:24:43 +00:00
|
|
|
# if defined(STRGEN)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include "endian_host.h"
|
|
|
|
# else
|
|
|
|
# include "endian_target.h"
|
|
|
|
# endif
|
|
|
|
#endif /* WIN32 || __OS2__ || WIN64 */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-10 19:39:54 +00:00
|
|
|
#if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define PATHSEP "\\"
|
2006-08-05 00:47:32 +00:00
|
|
|
# define PATHSEPCHAR '\\'
|
2006-08-25 12:26:34 +00:00
|
|
|
#else
|
|
|
|
# define PATHSEP "/"
|
|
|
|
# define PATHSEPCHAR '/'
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
2007-02-04 11:20:24 +00:00
|
|
|
#ifndef __BEOS__ /* already defined */
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* This is already defined in unix */
|
2006-12-22 15:06:27 +00:00
|
|
|
#if !defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__) && !defined(__MORPHOS__)
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned int uint;
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Not defined in QNX Neutrino (6.x) */
|
2004-12-04 17:54:56 +00:00
|
|
|
#if defined(__QNXNTO__)
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned int uint;
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#ifndef __BEOS__
|
2006-05-27 16:12:16 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* some platforms use 4 bytes bool in C++
|
|
|
|
* C bool has to be the same */
|
2006-05-27 16:12:16 +00:00
|
|
|
# ifndef __cplusplus
|
|
|
|
# ifdef FOUR_BYTE_BOOL
|
|
|
|
typedef unsigned long bool;
|
|
|
|
# else /* FOUR_BYTE_BOOL */
|
|
|
|
typedef unsigned char bool;
|
|
|
|
# endif /* FOUR_BYTE_BOOL */
|
|
|
|
# endif /* __cplusplus */
|
|
|
|
|
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
|
|
|
typedef signed __int64 int64;
|
|
|
|
typedef unsigned __int64 uint64;
|
2005-10-03 22:16:30 +00:00
|
|
|
#endif /* __BEOS__ */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-05 11:10:31 +00:00
|
|
|
#if defined(ARM) || defined(__arm__) || defined(__alpha__)
|
|
|
|
# define OTTD_ALIGNMENT
|
|
|
|
#endif
|
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Setup alignment and conversion macros */
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(TTD_BIG_ENDIAN)
|
2005-10-03 22:16:30 +00:00
|
|
|
static inline uint32 TO_LE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 TO_LE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
static inline uint32 FROM_LE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 FROM_LE16(uint16 x) { return BSWAP16(x); }
|
2006-02-05 23:12:23 +00:00
|
|
|
# define TO_BE32(x) (x)
|
|
|
|
# define TO_BE16(x) (x)
|
2005-11-14 19:48:04 +00:00
|
|
|
# define FROM_BE32(x) (x)
|
|
|
|
# define FROM_BE16(x) (x)
|
2006-02-05 23:12:23 +00:00
|
|
|
# define TO_LE32X(x) BSWAP32(x)
|
|
|
|
# define TO_BE32X(x) (x)
|
2004-08-09 17:04:08 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
static inline uint32 TO_BE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 TO_BE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
static inline uint32 FROM_BE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 FROM_BE16(uint16 x) { return BSWAP16(x); }
|
2006-02-05 23:12:23 +00:00
|
|
|
# define TO_LE32(x) (x)
|
|
|
|
# define TO_LE16(x) (x)
|
2005-11-14 19:48:04 +00:00
|
|
|
# define FROM_LE32(x) (x)
|
|
|
|
# define FROM_LE16(x) (x)
|
2006-02-05 23:12:23 +00:00
|
|
|
# define TO_LE32X(x) (x)
|
|
|
|
# define TO_BE32X(x) BSWAP32(x)
|
2005-10-03 22:16:30 +00:00
|
|
|
#endif /* TTD_BIG_ENDIAN */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#if !defined(GAME_DATA_DIR)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define GAME_DATA_DIR ""
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(PERSONAL_DIR)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define PERSONAL_DIR ""
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
2005-10-03 22:16:30 +00:00
|
|
|
# ifndef __BEOS__
|
|
|
|
enum {
|
|
|
|
false = 0,
|
|
|
|
true = 1,
|
|
|
|
};
|
|
|
|
# endif
|
|
|
|
#endif /* __cplusplus */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* Compile time assertions */
|
2004-12-23 14:46:16 +00:00
|
|
|
#ifdef __OS2__
|
2005-10-03 22:16:30 +00:00
|
|
|
# define assert_compile(expr)
|
2004-12-23 14:46:16 +00:00
|
|
|
#else
|
2006-05-27 16:12:16 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
# define assert_compile(expr) extern "C" void __ct_assert__(int a[1 - 2 * !(expr)])
|
|
|
|
# else /* __cplusplus */
|
|
|
|
# define assert_compile(expr) void __ct_assert__(int a[1 - 2 * !(expr)])
|
|
|
|
# endif /* !__cplusplus */
|
|
|
|
#endif /* __OS2__ */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
assert_compile(sizeof(uint32) == 4);
|
|
|
|
assert_compile(sizeof(uint16) == 2);
|
2005-11-14 19:48:04 +00:00
|
|
|
assert_compile(sizeof(uint8) == 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#define lengthof(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
#define endof(x) (&x[lengthof(x)])
|
2005-02-06 13:41:02 +00:00
|
|
|
#define lastof(x) (&x[lengthof(x) - 1])
|
2007-01-14 21:03:21 +00:00
|
|
|
|
|
|
|
#ifdef offsetof
|
|
|
|
# undef offsetof
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2007-01-14 21:03:21 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
# define offsetof(s,m) (size_t)&(((s *)0)->m)
|
|
|
|
#else /* __cplusplus */
|
|
|
|
# define cpp_offsetof(s,m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
|
2007-02-06 19:16:38 +00:00
|
|
|
# define offsetof(s,m) cpp_offsetof(s, m)
|
2007-01-14 21:03:21 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-04 11:20:24 +00:00
|
|
|
/* take care of some name clashes on MacOS */
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(__APPLE__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define GetString OTTD_GetString
|
|
|
|
# define DrawString OTTD_DrawString
|
|
|
|
# define Random OTTD_Random
|
|
|
|
# define CloseConnection OTTD_CloseConnection
|
|
|
|
#endif /* __APPLE */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
#ifdef __AMIGA__
|
2007-02-04 11:20:24 +00:00
|
|
|
/* it seems AmigaOS already have a Point declared */
|
2005-10-03 22:16:30 +00:00
|
|
|
# define Point OTTD_AMIGA_POINT
|
2004-12-08 16:27:54 +00:00
|
|
|
#endif
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* STDAFX_H */
|