sl@0: /* GMODULE - GLIB wrapper code for dynamic module loading sl@0: * Copyright (C) 1998 Tim Janik sl@0: * sl@0: * This library is free software; you can redistribute it and/or sl@0: * modify it under the terms of the GNU Lesser General Public sl@0: * License as published by the Free Software Foundation; either sl@0: * version 2 of the License, or (at your option) any later version. sl@0: * sl@0: * This library is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU sl@0: * Lesser General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU Lesser General Public sl@0: * License along with this library; if not, write to the sl@0: * Free Software Foundation, Inc., 59 Temple Place - Suite 330, sl@0: * Boston, MA 02111-1307, USA. sl@0: */ sl@0: #ifndef __G_MODULE_CONF_H__ sl@0: #define __G_MODULE_CONF_H__ sl@0: sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif /* __cplusplus */ sl@0: sl@0: sl@0: #define G_MODULE_IMPL_NONE 0 sl@0: #define G_MODULE_IMPL_DL 1 sl@0: #define G_MODULE_IMPL_DLD 2 sl@0: #define G_MODULE_IMPL_WIN32 3 sl@0: #define G_MODULE_IMPL_OS2 4 sl@0: #define G_MODULE_IMPL_BEOS 5 sl@0: #define G_MODULE_IMPL_DYLD 6 sl@0: #define G_MODULE_IMPL_AR 7 sl@0: sl@0: #define G_MODULE_IMPL G_MODULE_IMPL_DL sl@0: #undef G_MODULE_HAVE_DLERROR sl@0: #if (1) sl@0: #define G_MODULE_HAVE_DLERROR sl@0: #endif sl@0: #if (0) || defined (hp9000s300) || defined (__hp9000s300) || defined (__hp9000s300__) sl@0: #define G_MODULE_NEED_USCORE sl@0: #endif sl@0: #if (1) sl@0: #define G_MODULE_BROKEN_RTLD_GLOBAL sl@0: #endif sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif /* __cplusplus */ sl@0: sl@0: sl@0: #endif /* __G_MODULE_CONF_H__ */