00001 // $Id: global_os.h,v 1.5 2004-07-12 18:15:10 mbickel Exp $ 00002 // 00003 // $Log: global_os.h,v $ 00004 // Revision 1.5 2004-07-12 18:15:10 mbickel 00005 // Lots of tweaks and fixed for more portability and compilation with mingw 00006 // 00007 // Revision 1.4 2000/11/26 14:39:04 mbickel 00008 // Added Project Files for Borland C++ 00009 // Some modifications to compile source with BCC 00010 // 00011 // Revision 1.3 2000/10/17 13:04:16 mbickel 00012 // New terrainaccess reading/writing 00013 // Added Win32 project files 00014 // 00015 // Revision 1.2 2000/10/14 10:52:56 mbickel 00016 // Some adjustments for a Win32 port 00017 // 00018 // Revision 1.1 2000/10/12 21:37:57 mbickel 00019 // Further restructured platform dependant routines 00020 // 00021 // Revision 1.1 2000/10/12 20:21:43 mbickel 00022 // Restructuring operating system dependant files 00023 // 00024 // 00025 /* 00026 This file is part of Advanced Strategic Command; http://www.asc-hq.de 00027 Copyright (C) 1994-1999 Martin Bickel and Marc Schellenberger 00028 00029 This program is free software; you can redistribute it and/or modify 00030 it under the terms of the GNU General Public License as published by 00031 the Free Software Foundation; either version 2 of the License, or 00032 (at your option) any later version. 00033 00034 This program is distributed in the hope that it will be useful, 00035 but WITHOUT ANY WARRANTY; without even the implied warranty of 00036 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00037 GNU General Public License for more details. 00038 00039 You should have received a copy of the GNU General Public License 00040 along with this program; see the file COPYING. If not, write to the 00041 Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00042 Boston, MA 02111-1307 USA 00043 */ 00044 00045 // this file defines operating system specific macros and is only included by 00046 // global.h 00047 00048 #ifdef __BORLANDC__ 00049 #include "win32\borland\global_os.h" 00050 #else 00051 #ifdef __GNUG__ 00052 #include "gcc/global_os.h" 00053 #else 00054 #ifdef __WATCOMC__ 00055 #include "watcom/global_os.h" 00056 #else 00057 #ifdef _MSC_VER 00058 #include "msvc/global_os.h" 00059 #endif 00060 #endif 00061 #endif 00062 #endif
1.5.1