00001 // $Id: fileio.h,v 1.4 2004-07-12 18:15:10 mbickel Exp $ 00002 // 00003 // $Log: fileio.h,v $ 00004 // Revision 1.4 2004-07-12 18:15:10 mbickel 00005 // Lots of tweaks and fixed for more portability and compilation with mingw 00006 // 00007 // Revision 1.3 2003/11/21 19:25:44 mbickel 00008 // Fixed: invisible own units when directview disabled 00009 // 00010 // Revision 1.2 2000/10/14 10:52:56 mbickel 00011 // Some adjustments for a Win32 port 00012 // 00013 // Revision 1.1 2000/10/12 20:21:43 mbickel 00014 // Restructuring operating system dependant files 00015 // 00016 // 00017 /* 00018 This file is part of Advanced Strategic Command; http://www.asc-hq.de 00019 Copyright (C) 1994-1999 Martin Bickel and Marc Schellenberger 00020 00021 This program is free software; you can redistribute it and/or modify 00022 it under the terms of the GNU General Public License as published by 00023 the Free Software Foundation; either version 2 of the License, or 00024 (at your option) any later version. 00025 00026 This program is distributed in the hope that it will be useful, 00027 but WITHOUT ANY WARRANTY; without even the implied warranty of 00028 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00029 GNU General Public License for more details. 00030 00031 You should have received a copy of the GNU General Public License 00032 along with this program; see the file COPYING. If not, write to the 00033 Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00034 Boston, MA 02111-1307 USA 00035 */ 00036 00037 // this file takes care that the necessary header files for opendir / readdir 00038 // are being included in basestrm.cpp 00039 00040 #ifdef __BORLANDC__ 00041 #include "borland/fileio.h" 00042 #else 00043 #ifdef __GNUG__ 00044 #include "gcc/fileio.h" 00045 #else 00046 #ifdef __WATCOM_CPLUSPLUS__ 00047 #include "watcom/fileio.h" 00048 #else 00049 #ifdef _MSC_VER 00050 #include "msvc/fileio.h" 00051 #endif 00052 #endif 00053 #endif 00054 #endif 00055 00056 extern const bool has_drive_letters;
1.4.2