00001 /*************************************************************************** 00002 global.h - description 00003 ------------------- 00004 begin : 00005 copyright : (C) 2001 by Martin Bickel 00006 email : bickel@asc-hq.org 00007 ***************************************************************************/ 00008 00015 /*************************************************************************** 00016 * * 00017 * This program is free software; you can redistribute it and/or modify * 00018 * it under the terms of the GNU General Public License as published by * 00019 * the Free Software Foundation; either version 2 of the License, or * 00020 * (at your option) any later version. * 00021 * * 00022 ***************************************************************************/ 00023 00024 #ifndef global_h 00025 #define global_h 00026 00027 #ifdef _WIN32_ 00028 #include "win32/global_os.h" 00029 #else 00030 #ifdef _DOS_ 00031 #include "dos/global_os.h" 00032 #else 00033 #ifdef _UNIX_ 00034 #include "unix/global_os.h" 00035 #else 00036 #error "No system specified" 00037 #endif 00038 #endif 00039 #endif 00040 00041 #define ParserLoadImages 00042 00043 #endif
1.4.2