src/stdafx.h
author rubidium
Thu, 06 Dec 2007 22:29:47 +0000
changeset 8520 f11cbfab944c
parent 8500 39a092b5cc2f
child 8542 946720e80e9c
permissions -rw-r--r--
(svn r11584) -Change: add some extra checking in the hope to find the cause of FS#1482.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2125
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2125
diff changeset
     2
6977
67b989528f3d (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6916
diff changeset
     3
/** @file stdafx.h */
6916
e87d54a598ea (svn r9556) -Documentation: doxygen and comment-style changes. 'R', 'S'.. The end of the preliminary work is near
belugas
parents: 6611
diff changeset
     4
2436
177cb6a8339f (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2225
diff changeset
     5
#ifndef STDAFX_H
177cb6a8339f (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2225
diff changeset
     6
#define STDAFX_H
8520
f11cbfab944c (svn r11584) -Change: add some extra checking in the hope to find the cause of FS#1482.
rubidium
parents: 8500
diff changeset
     7
#define DEBUG_DUMP_COMMANDS
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     8
6071
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
     9
/* It seems that we need to include stdint.h before anything else
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
    10
 * We need INT64_MAX, which for most systems comes from stdint.h. However, MSVC
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
    11
 * does not have stdint.h and apparently neither does MorphOS, so define
8271
393440621fb9 (svn r11325) -Fix (r11312)[FS#1357]: [OSX] fixed compilation on OSX
bjarni
parents: 7901
diff changeset
    12
 * INT64_MAX for them ourselves.
393440621fb9 (svn r11325) -Fix (r11312)[FS#1357]: [OSX] fixed compilation on OSX
bjarni
parents: 7901
diff changeset
    13
 * Sometimes OSX headers manages to include stdint.h before this but without
393440621fb9 (svn r11325) -Fix (r11312)[FS#1357]: [OSX] fixed compilation on OSX
bjarni
parents: 7901
diff changeset
    14
 * __STDC_LIMIT_MACROS so it will be without INT64_*. We need to define those
393440621fb9 (svn r11325) -Fix (r11312)[FS#1357]: [OSX] fixed compilation on OSX
bjarni
parents: 7901
diff changeset
    15
 * too if this is the case. */
393440621fb9 (svn r11325) -Fix (r11312)[FS#1357]: [OSX] fixed compilation on OSX
bjarni
parents: 7901
diff changeset
    16
#if !defined(_MSC_VER) && !defined( __MORPHOS__) && !defined(_STDINT_H_)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    17
	#if defined(SUNOS)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    18
		/* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    19
		 * stdint.h defines and we need. */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    20
		#include <inttypes.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    21
	# else
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    22
		#define __STDC_LIMIT_MACROS
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    23
		#include <stdint.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    24
	#endif
6071
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
    25
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    26
	#define INT64_MAX 9223372036854775807LL
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    27
	#define INT64_MIN (-INT64_MAX - 1)
6071
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
    28
#endif
c37b45d0109b (svn r8382) -Fix (r8374): moved the include of stdint.h to the front of stdafx.h
bjarni
parents: 6063
diff changeset
    29
6184
3cfe1dfa7a04 (svn r8572) -Fix: use the C++ version of the Standard C Library headers. This due to the fact that some stl headers will include them anyway and #undef several defines made in stdafx.h.
rubidium
parents: 6094
diff changeset
    30
#include <cstdio>
3cfe1dfa7a04 (svn r8572) -Fix: use the C++ version of the Standard C Library headers. This due to the fact that some stl headers will include them anyway and #undef several defines made in stdafx.h.
rubidium
parents: 6094
diff changeset
    31
#include <cstddef>
3cfe1dfa7a04 (svn r8572) -Fix: use the C++ version of the Standard C Library headers. This due to the fact that some stl headers will include them anyway and #undef several defines made in stdafx.h.
rubidium
parents: 6094
diff changeset
    32
#include <cstring>
3cfe1dfa7a04 (svn r8572) -Fix: use the C++ version of the Standard C Library headers. This due to the fact that some stl headers will include them anyway and #undef several defines made in stdafx.h.
rubidium
parents: 6094
diff changeset
    33
#include <cstdlib>
3cfe1dfa7a04 (svn r8572) -Fix: use the C++ version of the Standard C Library headers. This due to the fact that some stl headers will include them anyway and #undef several defines made in stdafx.h.
rubidium
parents: 6094
diff changeset
    34
#include <climits>
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    35
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
    36
/* MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
    37
 * strgen always runs from terminal and don't need a window for asserts */
2731
97a409a62741 (svn r3276) reverted the last two commits. OSX 10.2 kept finding new stuff to prevent it from running OpenTTD, so now it's not supported anymore
bjarni
parents: 2730
diff changeset
    38
#if !defined(__APPLE__) || defined(STRGEN)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    39
	#include <cassert>
2223
29d61b962cb0 (svn r2741) -Feature: [OSX] added a window to display asserts on OSX (Tobin)
bjarni
parents: 2186
diff changeset
    40
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    41
	#include "os/macosx/macos.h"
2223
29d61b962cb0 (svn r2741) -Feature: [OSX] added a window to display asserts on OSX (Tobin)
bjarni
parents: 2186
diff changeset
    42
#endif
29d61b962cb0 (svn r2741) -Feature: [OSX] added a window to display asserts on OSX (Tobin)
bjarni
parents: 2186
diff changeset
    43
858
329ff519fb45 (svn r1339) -Fix: compilation with networking works on MinGW32 again (thx orudge).
darkvater
parents: 796
diff changeset
    44
#if defined(UNIX) || defined(__MINGW32__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    45
	#include <sys/types.h>
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
#endif
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    47
781
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
    48
#if defined(__OS2__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    49
	#include <types.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    50
	#define strcasecmp stricmp
781
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
    51
#endif
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
    52
6227
ab74f5faf662 (svn r8674) [PSP] -Add: added network code for PSP, based on the work of Turulo
truelight
parents: 6218
diff changeset
    53
#if defined(PSP)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    54
	#include <psptypes.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    55
	#include <pspdebug.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    56
	#include <pspthreadman.h>
446
20304ea8e94e (svn r655) Add the necessary bits to make building on SunOS/Solaris work
tron
parents: 425
diff changeset
    57
#endif
20304ea8e94e (svn r655) Add the necessary bits to make building on SunOS/Solaris work
tron
parents: 425
diff changeset
    58
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    59
#if defined(__BEOS__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    60
	#include <SupportDefs.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    61
#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    62
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    63
#if defined(SUNOS)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    64
	#include <alloca.h>
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    65
#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    66
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    67
#if defined(__MORPHOS__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    68
	/* MorphOS defines certain Amiga defines per default, we undefine them
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    69
	 * here to make the rest of source less messy and more clear what is
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    70
	 * required for morphos and what for AmigaOS */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    71
	#if defined(amigaos)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    72
		#undef amigaos
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    73
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    74
	#if defined(__amigaos__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    75
		#undef __amigaos__
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    76
	# endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    77
	#if defined(__AMIGA__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    78
		#undef __AMIGA__
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    79
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    80
	#if defined(AMIGA)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    81
		#undef AMIGA
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    82
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    83
	#if defined(amiga)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    84
		#undef amiga
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    85
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    86
	/* Act like we already included this file, as it somehow gives linkage problems
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    87
	 *  (mismatch linkage of C++ and C between this include and unistd.h). */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    88
	#define CLIB_USERGROUP_PROTOS_H
770
89dab23f04ca (svn r1236) MorphOS: added make release like in OSX (tokai)
bjarni
parents: 569
diff changeset
    89
#endif /* __MORPHOS__ */
89dab23f04ca (svn r1236) MorphOS: added make release like in OSX (tokai)
bjarni
parents: 569
diff changeset
    90
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    91
#if defined(__APPLE__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    92
	#include "os/macosx/osx_stdafx.h"
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    93
	/* Make endian swapping use Apple's macros to increase speed (since it will use hardware swapping if available)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    94
	 * Even though they should return uint16 and uint32, we get warnings if we don't cast those (why?) */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    95
	#define BSWAP32(x) ((uint32)Endian32_Swap(x))
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    96
	#define BSWAP16(x) ((uint16)Endian16_Swap(x))
3016
c63fb93fa1a0 (svn r3596) -Codechange: [OSX] changed to use Apple's macros instead of OTTD macros for endian conversion
bjarni
parents: 2984
diff changeset
    97
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    98
	#define BSWAP32(x) ((((x) >> 24) & 0xFF) | (((x) >> 8) & 0xFF00) | (((x) << 8) & 0xFF0000) | (((x) << 24) & 0xFF000000))
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
    99
	#define BSWAP16(x) ((x) >> 8 | (x) << 8)
3289
8c0707257253 (svn r4003) - Minor codebeautifier@work
Darkvater
parents: 3016
diff changeset
   100
#endif /* __APPLE__ */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
6218
89dc931b8d78 (svn r8647) -Codechange: add a general way to handle platforms who can only have a limited amount of file-descripters open at any given time.
truelight
parents: 6198
diff changeset
   102
#if defined(PSP)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   103
	/* PSP can only have 10 file-descriptors open at any given time, but this
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   104
	 *  switch only limits reads via the Fio system. So keep 2 fds free for things
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   105
	 *  like saving a game. */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   106
	#define LIMITED_FDS 8
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   107
	#define printf pspDebugScreenPrintf
6218
89dc931b8d78 (svn r8647) -Codechange: add a general way to handle platforms who can only have a limited amount of file-descripters open at any given time.
truelight
parents: 6198
diff changeset
   108
#endif /* PSP */
89dc931b8d78 (svn r8647) -Codechange: add a general way to handle platforms who can only have a limited amount of file-descripters open at any given time.
truelight
parents: 6198
diff changeset
   109
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   110
/* by default we use [] var arrays */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   111
#define VARARRAY_SIZE
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   112
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   113
/* Stuff for GCC */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   114
#if defined(__GNUC__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   115
	#define NORETURN __attribute__ ((noreturn))
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   116
	#define FORCEINLINE inline
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   117
	#define CDECL
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   118
	#define __int64 long long
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   119
	#define GCC_PACK __attribute__((packed))
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   120
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   121
	#if (__GNUC__ == 2)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   122
		#undef VARARRAY_SIZE
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   123
		#define VARARRAY_SIZE 0
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   124
	#endif
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   125
#endif /* __GNUC__ */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   126
781
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
   127
#if defined(__WATCOMC__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   128
	#define NORETURN
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   129
	#define FORCEINLINE inline
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   130
	#define CDECL
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   131
	#define GCC_PACK
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   132
	#include <malloc.h>
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   133
#endif /* __WATCOMC__ */
781
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
   134
796
42a3669a939f (svn r1266) -Fix: fix some cygwin/mingw warnings
darkvater
parents: 781
diff changeset
   135
#if defined(__MINGW32__) || defined(__CYGWIN__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   136
	#include <malloc.h> // alloca()
796
42a3669a939f (svn r1266) -Fix: fix some cygwin/mingw warnings
darkvater
parents: 781
diff changeset
   137
#endif
42a3669a939f (svn r1266) -Fix: fix some cygwin/mingw warnings
darkvater
parents: 781
diff changeset
   138
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   139
/* Stuff for MSVC */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   140
#if defined(_MSC_VER)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   141
	#pragma once
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   142
	/* Define a win32 target platform, to override defaults of the SDK
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   143
	 * We need to define NTDDI version for Vista SDK, but win2k is minimum */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   144
	#define NTDDI_VERSION NTDDI_WIN2K // Windows 2000
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   145
	#define _WIN32_WINNT 0x0500       // Windows 2000
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   146
	#define _WIN32_WINDOWS 0x400      // Windows 95
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   147
	#if !defined(WINCE)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   148
		#define WINVER 0x0400     // Windows NT 4.0 / Windows 95
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   149
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   150
	#define _WIN32_IE_ 0x0401         // 4.01 (win98 and NT4SP5+)
2695
395110265c87 (svn r3237) - CodeChange: remove silencing of some warnings. MSVC6 once again has some issues with enums, and other things as usual, so silence those still.
Darkvater
parents: 2694
diff changeset
   151
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   152
	#define WIN32_LEAN_AND_MEAN     // Exclude rarely-used stuff from Windows headers
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   153
	#pragma warning(disable: 4244)  // 'conversion' conversion from 'type1' to 'type2', possible loss of data
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   154
	#pragma warning(disable: 4761)  // integral size mismatch in argument : conversion supplied
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   155
	#pragma warning(disable: 4200)  // nonstandard extension used : zero-sized array in struct/union
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   156
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   157
	#if (_MSC_VER >= 1400)                   // MSVC 2005 safety checks
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   158
		#pragma warning(disable: 4996)   // 'strdup' was declared deprecated
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   159
		#define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   160
		#pragma warning(disable: 6308)   // code analyzer: 'realloc' might return null pointer: assigning null pointer to 't_ptr', which is passed as an argument to 'realloc', will cause the original memory block to be leaked
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   161
		#pragma warning(disable: 6011)   // code analyzer: Dereferencing NULL pointer 'pfGetAddrInfo': Lines: 995, 996, 998, 999, 1001
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   162
		#pragma warning(disable: 6326)   // code analyzer: potential comparison of a constant with another constant
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   163
		#pragma warning(disable: 6031)   // code analyzer: Return value ignored: 'ReadFile'
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   164
		#pragma warning(disable: 6255)   // code analyzer: _alloca indicates failure by raising a stack overflow exception. Consider using _malloca instead
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   165
		#pragma warning(disable: 6246)   // code analyzer: Local declaration of 'statspec' hides declaration of the same name in outer scope. For additional information, see previous declaration at ...
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   166
	#else /* _MSC_VER >= 1400  ( <1400 for MSVC2003) */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   167
		#pragma warning(disable: 4288)   // nonstandard extension used : 'y' : loop control variable declared in the for-loop is used outside the for-loop scope; it conflicts with the declaration in the outer scope
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   168
		#pragma warning(disable: 4292)   // compiler limit : terminating debug information emission for enum 'StringIdEnum' with member 'STR_801D_COAL_CAR'
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   169
	#endif /* _MSC_VER >= 1400 */
2694
99d88a9d5337 (svn r3236) - Fix: warnings about 'CDECL must be used with ...' on VS6
Darkvater
parents: 2639
diff changeset
   170
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   171
	#include <malloc.h> // alloca()
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   172
	#define NORETURN __declspec(noreturn)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   173
	#define FORCEINLINE __forceinline
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   174
	#define inline _inline
2694
99d88a9d5337 (svn r3236) - Fix: warnings about 'CDECL must be used with ...' on VS6
Darkvater
parents: 2639
diff changeset
   175
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   176
	#if !defined(WINCE)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   177
		#define CDECL _cdecl
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   178
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   179
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   180
	int CDECL snprintf(char *str, size_t size, const char *format, ...);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   181
	#if (_MSC_VER < 1400) || defined(WINCE)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   182
		int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   183
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   184
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   185
	#if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   186
		#if !defined(_W64)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   187
			#define _W64
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   188
		#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   189
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   190
		typedef _W64 int INT_PTR, *PINT_PTR;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   191
		typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   192
	#endif /* WIN32 && !_WIN64 && !WIN64 */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   193
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   194
	#define GCC_PACK
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   195
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   196
	/* This is needed to zlib uses the stdcall calling convention on visual studio */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   197
	#if defined(WITH_ZLIB) || defined(WITH_PNG)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   198
		#if !defined(ZLIB_WINAPI)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   199
			#define ZLIB_WINAPI
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   200
		#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   201
	#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   202
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   203
	#if defined(WINCE)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   204
		#define strcasecmp _stricmp
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   205
		#define strncasecmp _strnicmp
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   206
		#undef DEBUG
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   207
	#else
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   208
		#define strcasecmp stricmp
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   209
		#define strncasecmp strnicmp
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   210
	#endif
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   211
/* suppress: warning C4005: 'offsetof' : macro redefinition (VC8) */
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   212
#endif /* defined(_MSC_VER) */
2483
ee0517ddfa92 (svn r3009) DIEEEEEEEEEEE VS6 (you good-for-nothing compiler)
Darkvater
parents: 2482
diff changeset
   213
6006
56ccbc3ec899 (svn r8306) [WinCE] -Fix: some functions don't exists in WinCE, so give an alternative where possible
truelight
parents: 5922
diff changeset
   214
#if defined(WINCE)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   215
	#define strdup _strdup
6006
56ccbc3ec899 (svn r8306) [WinCE] -Fix: some functions don't exists in WinCE, so give an alternative where possible
truelight
parents: 5922
diff changeset
   216
#endif /* WINCE */
56ccbc3ec899 (svn r8306) [WinCE] -Fix: some functions don't exists in WinCE, so give an alternative where possible
truelight
parents: 5922
diff changeset
   217
5167
2b9d61386688 (svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32
Darkvater
parents: 5138
diff changeset
   218
/* NOTE: the string returned by these functions is only valid until the next
2b9d61386688 (svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32
Darkvater
parents: 5138
diff changeset
   219
 * call to the same function and is not thread- or reentrancy-safe */
2b9d61386688 (svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32
Darkvater
parents: 5138
diff changeset
   220
#if !defined(STRGEN)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   221
	#if defined(WIN32) || defined(WIN64)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   222
		char *getcwd(char *buf, size_t size);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   223
		#include <tchar.h>
6577
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6559
diff changeset
   224
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   225
		/* XXX - WinCE without MSVCRT doesn't support wfopen, so it seems */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   226
		#if !defined(WINCE)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   227
			#define fopen(file, mode) _tfopen(OTTD2FS(file), _T(mode))
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   228
		#endif /* WINCE */
6577
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6559
diff changeset
   229
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   230
		const char *FS2OTTD(const TCHAR *name);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   231
		const TCHAR *OTTD2FS(const char *name);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   232
	#else
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   233
		#define fopen(file, mode) fopen(OTTD2FS(file), mode)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   234
		const char *FS2OTTD(const char *name);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   235
		const char *OTTD2FS(const char *name);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   236
	#endif /* WIN32 */
5167
2b9d61386688 (svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32
Darkvater
parents: 5138
diff changeset
   237
#endif /* STRGEN */
2482
dffcca243dbc (svn r3008) [ 1247535 ] Native Support for Win64 (compile&run only) (michi_cc)
Darkvater
parents: 2436
diff changeset
   238
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   239
/* Windows has always LITTLE_ENDIAN */
2482
dffcca243dbc (svn r3008) [ 1247535 ] Native Support for Win64 (compile&run only) (michi_cc)
Darkvater
parents: 2436
diff changeset
   240
#if defined(WIN32) || defined(__OS2__) || defined(WIN64)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   241
	#define TTD_LITTLE_ENDIAN
7434
062b9e494412 (svn r10191) -Backport (r9148 from NoAI): detecting of CPU type (32 vs 64 bits).
rubidium
parents: 7425
diff changeset
   242
#elif defined(TESTING)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   243
	/* Do noting  */
157
dd017fa3bad8 (svn r158) -Fix: make endianess check 100% accurate (hopefully ;))
truelight
parents: 0
diff changeset
   244
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   245
	/* Else include endian[target/host].h, which has the endian-type, autodetected by the Makefile */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   246
	#if defined(STRGEN)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   247
		#include "endian_host.h"
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   248
	#else
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   249
		#include "endian_target.h"
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   250
	#endif
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   251
#endif /* WIN32 || __OS2__ || WIN64 */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
5842
180c71b8fc14 (svn r8042) - Fix: OS/2 compilation with GCC (thanks to Paul Smedley and TrueBrain for their help)
orudge
parents: 5838
diff changeset
   253
#if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   254
	#define PATHSEP "\\"
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   255
	#define PATHSEPCHAR '\\'
4379
2866185c1377 (svn r6117) -Fix r6097: on mingw it is normal that both / as \ are accepted as input
truelight
parents: 4316
diff changeset
   256
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   257
	#define PATHSEP "/"
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   258
	#define PATHSEPCHAR '/'
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
#endif
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
typedef unsigned char byte;
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   262
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   263
/* This is already defined in unix, but not in QNX Neutrino (6.x)*/
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   264
#if (!defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__) && !defined(__MORPHOS__)) || defined(__QNXNTO__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   265
	typedef unsigned int uint;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
#endif
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   267
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   268
#if !defined(__BEOS__) /* Already defined on BEOS */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   269
	typedef unsigned char    uint8;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   270
	typedef   signed char     int8;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   271
	typedef unsigned short   uint16;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   272
	typedef   signed short    int16;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   273
	typedef unsigned int     uint32;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   274
	typedef   signed int      int32;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   275
	typedef unsigned __int64 uint64;
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   276
	typedef   signed __int64  int64;
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents: 536
diff changeset
   277
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
2978
1a04b74b61ae (svn r3553) - Revert r3549 "Change the behaviour of OTTD_ALIGNMENT". Some tests showed that forcing aligned reads slowed down the code (drawing smallmap) by 14%. Change back to the old behaviour.
Darkvater
parents: 2976
diff changeset
   279
#if defined(ARM) || defined(__arm__) || defined(__alpha__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   280
	#define OTTD_ALIGNMENT
2978
1a04b74b61ae (svn r3553) - Revert r3549 "Change the behaviour of OTTD_ALIGNMENT". Some tests showed that forcing aligned reads slowed down the code (drawing smallmap) by 14%. Change back to the old behaviour.
Darkvater
parents: 2976
diff changeset
   281
#endif
1a04b74b61ae (svn r3553) - Revert r3549 "Change the behaviour of OTTD_ALIGNMENT". Some tests showed that forcing aligned reads slowed down the code (drawing smallmap) by 14%. Change back to the old behaviour.
Darkvater
parents: 2976
diff changeset
   282
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   283
/* Setup alignment and conversion macros */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   284
#if defined(TTD_BIG_ENDIAN)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   285
	#define TO_BE32X(x)  (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   286
	#define FROM_BE32(x) (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   287
	#define TO_BE32(x)   (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   288
	#define FROM_BE16(x) (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   289
	#define TO_BE16(x)   (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   290
	#define TO_LE32X(x)  BSWAP32(x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   291
	static inline uint32 FROM_LE32(uint32 x) { return BSWAP32(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   292
	static inline uint32 TO_LE32(uint32 x)   { return BSWAP32(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   293
	static inline uint16 FROM_LE16(uint16 x) { return BSWAP16(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   294
	static inline uint16 TO_LE16(uint16 x)   { return BSWAP16(x); }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   295
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   296
	#define TO_BE32X(x)  BSWAP32(x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   297
	static inline uint32 FROM_BE32(uint32 x) { return BSWAP32(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   298
	static inline uint32 TO_BE32(uint32 x)   { return BSWAP32(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   299
	static inline uint16 FROM_BE16(uint16 x) { return BSWAP16(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   300
	static inline uint16 TO_BE16(uint16 x)   { return BSWAP16(x); }
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   301
	#define TO_LE32X(x)  (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   302
	#define FROM_LE32(x) (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   303
	#define TO_LE32(x)   (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   304
	#define FROM_LE16(x) (x)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   305
	#define TO_LE16(x)   (x)
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   306
#endif /* TTD_BIG_ENDIAN */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
7425
350b9265b7a2 (svn r10182) -Codechange: rewrite most part of the file loading/searching to be more flexible.
rubidium
parents: 7330
diff changeset
   308
#if !defined(WITH_PERSONAL_DIR)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   309
	#define PERSONAL_DIR ""
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   310
#endif
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   311
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   312
/* Compile time assertions */
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   313
#if defined(__OS2__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   314
	#define assert_compile(expr)
781
9717ff353c17 (svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)
truelight
parents: 770
diff changeset
   315
#else
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   316
	#define assert_compile(expr) extern "C" void __ct_assert__(int a[1 - 2 * !(expr)])
3900
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3624
diff changeset
   317
#endif /* __OS2__ */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
assert_compile(sizeof(uint32) == 4);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
assert_compile(sizeof(uint16) == 2);
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2485
diff changeset
   321
assert_compile(sizeof(uint8)  == 1);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   322
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
#define lengthof(x) (sizeof(x)/sizeof(x[0]))
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   324
#define endof(x) (&x[lengthof(x)])
1317
f382f1b439c7 (svn r1821) Move generic string handling functions to string.[ch] and introduce stre{cpy,cat}, see string.h for their semantics
tron
parents: 1022
diff changeset
   325
#define lastof(x) (&x[lengthof(x) - 1])
5922
510e1bbc5992 (svn r8131) -Fix (r8125): g++ warning: 'invalid access to non-static data member ?<class>::<member>? of NULL object'. It is weird, but renaming the 'offsetof' macro helped.
KUDr
parents: 5842
diff changeset
   326
6409
55217fea8342 (svn r8818) -Codechange: remove the #ifdef _cplusplus remnants.
rubidium
parents: 6227
diff changeset
   327
#define cpp_offsetof(s,m)   (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   328
#if !defined(offsetof)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   329
	#define offsetof(s,m) cpp_offsetof(s, m)
6409
55217fea8342 (svn r8818) -Codechange: remove the #ifdef _cplusplus remnants.
rubidium
parents: 6227
diff changeset
   330
#endif /* offsetof */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   331
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   332
6185
be6627364fa3 (svn r8573) -Cleanup: obey the comment style in stdafx.h.
rubidium
parents: 6184
diff changeset
   333
/* take care of some name clashes on MacOS */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   334
#if defined(__APPLE__)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   335
	#define GetString OTTD_GetString
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   336
	#define DrawString OTTD_DrawString
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   337
	#define Random OTTD_Random
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   338
	#define CloseConnection OTTD_CloseConnection
2485
fd92a70a064a (svn r3011) Refix last revision's fix of VS6 which broke compilation on MinGW. Also beautify stdafx.h with nice indentation and comments after big #ifdef blocks. Hope it didn't break compilation on any OS's.
Darkvater
parents: 2483
diff changeset
   339
#endif /* __APPLE */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   340
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   341
#if defined(__AMIGA__)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   342
	/* it seems AmigaOS already have a Point declared */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   343
	#define Point OTTD_AMIGA_POINT
569
2e86ae517874 (svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai)
bjarni
parents: 543
diff changeset
   344
#endif
2e86ae517874 (svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai)
bjarni
parents: 543
diff changeset
   345
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   346
#if !defined(STRGEN)
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   347
	/* In strgen error is not fatal and returns */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   348
	void NORETURN CDECL error(const char *str, ...);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   349
#else
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   350
	void CDECL error(const char *str, ...);
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   351
#endif
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   352
7118
2cc02ab0557d (svn r9842) -Codechange: now NOT_REACHED is also triggered when debugging is disabled.
rubidium
parents: 7020
diff changeset
   353
#define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
2cc02ab0557d (svn r9842) -Codechange: now NOT_REACHED is also triggered when debugging is disabled.
rubidium
parents: 7020
diff changeset
   354
7771
e6f9227cf0fc (svn r10605) -Fix [FS#1046]: also OpenBSD does not know wchar. Patch by Matthias.
rubidium
parents: 7762
diff changeset
   355
#if defined(MORPHOS)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   356
	/* MorphOS doesn't have C++ conformant _stricmp... */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   357
	#define _stricmp stricmp
7771
e6f9227cf0fc (svn r10605) -Fix [FS#1046]: also OpenBSD does not know wchar. Patch by Matthias.
rubidium
parents: 7762
diff changeset
   358
#elif defined(OPENBSD)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   359
	/* OpenBSD uses strcasecmp(3) */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   360
	#define _stricmp strcasecmp
7771
e6f9227cf0fc (svn r10605) -Fix [FS#1046]: also OpenBSD does not know wchar. Patch by Matthias.
rubidium
parents: 7762
diff changeset
   361
#endif
e6f9227cf0fc (svn r10605) -Fix [FS#1046]: also OpenBSD does not know wchar. Patch by Matthias.
rubidium
parents: 7762
diff changeset
   362
7773
8a128f839a86 (svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
glx
parents: 7771
diff changeset
   363
#if !defined(MORPHOS) && !defined(OPENBSD)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   364
	/* MorphOS & OpenBSD don't know wchars, the rest does :( */
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   365
	#define HAS_WCHAR
7773
8a128f839a86 (svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
glx
parents: 7771
diff changeset
   366
#endif /* !defined(MORPHOS) && !defined(OPENBSD) */
7751
99bcdf28a226 (svn r10562) -Fix: most of the MorphOS issues; MorphOS doesn't know about wchars, so disable all code that has to use wchars for MorphOS.
rubidium
parents: 7650
diff changeset
   367
7762
03721db0ac1c (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7751
diff changeset
   368
#if !defined(MAX_PATH)
8500
39a092b5cc2f (svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabs
skidd13
parents: 8423
diff changeset
   369
	#define MAX_PATH 260
7762
03721db0ac1c (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7751
diff changeset
   370
#endif
03721db0ac1c (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7751
diff changeset
   371
2436
177cb6a8339f (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2225
diff changeset
   372
#endif /* STDAFX_H */