00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: flc_dll.h 00004 00005 Base class for Dynamic load system 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: mar ago 3 2004 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00016 00017 #ifndef flc_DLL_H 00018 #define flc_DLL_H 00019 00020 #if defined(FALCON_SYSTEM_WIN) 00021 #include <falcon/dll_win.h> 00022 #elif defined(FALCON_SYSTEM_MAC) 00023 #include <falcon/dll_mac.h> 00024 #else 00025 #include <falcon/dll_dl.h> 00026 #endif 00027 00028 #endif 00029 /* end of flc_dll.h */