00001 // $Id: global_os.h,v 1.6 2001-05-18 22:30:30 mbickel Exp $ 00002 // 00003 // $Log: global_os.h,v $ 00004 // Revision 1.6 2001-05-18 22:30:30 mbickel 00005 // The data file is now installed in the correct directory 00006 // If the installation directory is changed with configure, the new path 00007 // will now be compiled directly into ASC 00008 // 00009 // Revision 1.5 2000/10/31 18:08:28 mbickel 00010 // Borland C now uses unsigned char ( tools/Makefile changed ) 00011 // Added header file for size_t to global_os.h 00012 // 00013 // Revision 1.4 2000/10/17 13:04:16 mbickel 00014 // New terrainaccess reading/writing 00015 // Added Win32 project files 00016 // 00017 // Revision 1.3 2000/10/16 14:34:14 mbickel 00018 // Win32 port is now running fine. 00019 // Removed MSVC project files and put them into a zip file in 00020 // asc/source/win32/msvc/ 00021 // 00022 // Revision 1.2 2000/10/14 13:07:05 mbickel 00023 // Moved DOS version into own subdirectories 00024 // Win32 version with Watcom compiles and links ! But doesn't run yet... 00025 // 00026 // Revision 1.1 2000/10/14 10:55:06 mbickel 00027 // Added ASC-Win32 project files for Watcom 00028 // 00029 // Revision 1.1 2000/10/12 21:37:56 mbickel 00030 // Further restructured platform dependant routines 00031 // 00032 // Revision 1.1 2000/10/12 20:21:43 mbickel 00033 // Restructuring operating system dependant files 00034 // 00035 // 00036 /* 00037 This file is part of Advanced Strategic Command; http://www.asc-hq.de 00038 Copyright (C) 1994-1999 Martin Bickel and Marc Schellenberger 00039 00040 This program is free software; you can redistribute it and/or modify 00041 it under the terms of the GNU General Public License as published by 00042 the Free Software Foundation; either version 2 of the License, or 00043 (at your option) any later version. 00044 00045 This program is distributed in the hope that it will be useful, 00046 but WITHOUT ANY WARRANTY; without even the implied warranty of 00047 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00048 GNU General Public License for more details. 00049 00050 You should have received a copy of the GNU General Public License 00051 along with this program; see the file COPYING. If not, write to the 00052 Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00053 Boston, MA 02111-1307 USA 00054 */ 00055 00056 // this file takes care that the necessary header files for opendir / readdir 00057 // are being included in basestrm.cpp 00058 00059 #ifndef global_os_h_included 00060 #define global_os_h_included 00061 00062 #define HAVE_STRICMP 00063 #define HAVE_ITOA 00064 #define HAVE_EXCEPTION 00065 #define HAVE_LIMITS 00066 #define HAVE_LOG2 00067 #define StaticClassVariable static 00068 #ifdef __WATCOM_CPLUSPLUS__ // and not Watcom C 00069 namespace std {}; 00070 #endif 00071 00072 #define CASE_SENSITIVE_FILE_NAMES 0 00073 #define USE_HOME_DIRECTORY 0 00074 00075 #define sdlheader "sdl.h" 00076 #include <wchar.h> 00077 #endif
1.5.1