1998-08-09 10:33:42 +02:00
|
|
|
/* GMODULE - GLIB wrapper code for dynamic module loading
|
|
|
|
* Copyright (C) 1998 Tim Janik
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1998-08-10 03:36:18 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1998-08-09 10:33:42 +02:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
#ifndef __GMODULE_H__
|
|
|
|
#define __GMODULE_H__
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
version bump to 1.1.3, binary age 0, interface age 0.
Sun Aug 16 20:28:27 1998 Tim Janik <timj@gtk.org>
* version bump to 1.1.3, binary age 0, interface age 0.
* glib.h: be nice to platforms that don't have gint64 and don't
issue #warning on every compilation. since glib doesn't require
gint64 itself, packages that need gint64 should test for this
themselves.
* glib.h:
* gutils.c: added a new function g_vsnprintf().
Fri Aug 14 16:41:53 1998 Tim Janik <timj@gtk.org>
* glib.h: added static inline functions for bit mask tests:
g_bit_nth_lsf, g_bit_nth_msf and g_bit_storage.
Fri Aug 13 14:23:37 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gmessages.c:
revised the message handling system, which is now based on a new
mechanism g_log*. most of the assertment macros got adapted to
feature the new g_log() call with an additional specification of
the log level in a preprocessor macro G_LOG_DOMAIN. if G_LOG_DOMAIN
is undefined upon the includion of glib.h, it'll be defined with a
value of (NULL) and thus preserves the original bahaviour for
warning and error messages. the message handler setting functions
for g_warning, g_error and g_message are only provided for backwards
compatibility and might get removed somewhen.
* Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
to "GLib" upon compilation. we currently have to add this definition
to the DEFS variable.
* testglib.c: we need an ugly #undef G_LOG_DOMAIN at the start
of this file currently, since automake doesn't support per target
_CFLAGS yet.
* glib.h: changed some gints to gbooleans, made a few const corrections,
removed some superfluous G_STMT_START{}G_STMT_END wrappers, added some
in other required places.
* gnode.c:
(g_node_prepend):
(g_node_insert_before):
(g_node_insert):
(g_node_append_data):
(g_node_prepend_data):
(g_node_insert_data_before):
(g_node_insert_data):
(g_node_append):
return (node), so these macros/functions can be usefully chained with
g_node_new().
[GModule]
Fri Aug 14 02:24:39 1998 Tim Janik <timj@gtk.org>
* Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
to "GModule" upon compilation. we currently have to add this definition
to the DEFS variable.
* testgmodule.c: we need an ugly #undef G_LOG_DOMAIN at the start
of this file currently, since automake doesn't support per target
_CFLAGS yet.
1998-08-16 23:14:11 +02:00
|
|
|
extern const char *g_log_domain_gmodule;
|
|
|
|
#include <glib.h>
|
|
|
|
|
1998-08-09 10:33:42 +02:00
|
|
|
|
1998-08-09 13:39:50 +02:00
|
|
|
/* exporting and importing functions,
|
1998-08-17 08:29:22 +02:00
|
|
|
* we need autoconf support here to feature Windows dll stubs.
|
1998-08-09 13:39:50 +02:00
|
|
|
*/
|
1998-08-09 10:33:42 +02:00
|
|
|
#define G_MODULE_IMPORT extern
|
1998-08-17 08:29:22 +02:00
|
|
|
#define G_MODULE_EXPORT
|
1998-08-09 10:33:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
G_MODULE_BIND_LAZY = 1 << 0,
|
1998-08-17 08:29:22 +02:00
|
|
|
G_MODULE_BIND_MASK = 0x01
|
1998-08-09 10:33:42 +02:00
|
|
|
} GModuleFlags;
|
|
|
|
|
1998-08-17 04:40:30 +02:00
|
|
|
typedef struct _GModule GModule;
|
|
|
|
typedef const gchar* (*GModuleCheckInit) (GModule *module);
|
1998-09-21 04:32:30 +02:00
|
|
|
typedef void (*GModuleUnload) (GModule *module);
|
1998-08-09 10:33:42 +02:00
|
|
|
|
|
|
|
/* return TRUE if dynamic module loading is supported */
|
|
|
|
gboolean g_module_supported (void);
|
|
|
|
|
|
|
|
/* open a module `file_name' and return handle, which is NULL on error */
|
|
|
|
GModule* g_module_open (const gchar *file_name,
|
|
|
|
GModuleFlags flags);
|
|
|
|
|
|
|
|
/* close a previously opened module, returns TRUE on success */
|
|
|
|
gboolean g_module_close (GModule *module);
|
|
|
|
|
1998-09-17 06:59:41 +02:00
|
|
|
/* make a module resident so g_module_close on it will be ignored */
|
|
|
|
void g_module_make_resident (GModule *module);
|
|
|
|
|
1998-08-09 10:33:42 +02:00
|
|
|
/* query the last module error as a string */
|
|
|
|
gchar* g_module_error (void);
|
|
|
|
|
|
|
|
/* retrive a symbol pointer from `module', returns TRUE on success */
|
|
|
|
gboolean g_module_symbol (GModule *module,
|
|
|
|
const gchar *symbol_name,
|
version bump to 1.1.3, binary age 0, interface age 0.
Sun Aug 16 20:28:27 1998 Tim Janik <timj@gtk.org>
* version bump to 1.1.3, binary age 0, interface age 0.
* glib.h: be nice to platforms that don't have gint64 and don't
issue #warning on every compilation. since glib doesn't require
gint64 itself, packages that need gint64 should test for this
themselves.
* glib.h:
* gutils.c: added a new function g_vsnprintf().
Fri Aug 14 16:41:53 1998 Tim Janik <timj@gtk.org>
* glib.h: added static inline functions for bit mask tests:
g_bit_nth_lsf, g_bit_nth_msf and g_bit_storage.
Fri Aug 13 14:23:37 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gmessages.c:
revised the message handling system, which is now based on a new
mechanism g_log*. most of the assertment macros got adapted to
feature the new g_log() call with an additional specification of
the log level in a preprocessor macro G_LOG_DOMAIN. if G_LOG_DOMAIN
is undefined upon the includion of glib.h, it'll be defined with a
value of (NULL) and thus preserves the original bahaviour for
warning and error messages. the message handler setting functions
for g_warning, g_error and g_message are only provided for backwards
compatibility and might get removed somewhen.
* Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
to "GLib" upon compilation. we currently have to add this definition
to the DEFS variable.
* testglib.c: we need an ugly #undef G_LOG_DOMAIN at the start
of this file currently, since automake doesn't support per target
_CFLAGS yet.
* glib.h: changed some gints to gbooleans, made a few const corrections,
removed some superfluous G_STMT_START{}G_STMT_END wrappers, added some
in other required places.
* gnode.c:
(g_node_prepend):
(g_node_insert_before):
(g_node_insert):
(g_node_append_data):
(g_node_prepend_data):
(g_node_insert_data_before):
(g_node_insert_data):
(g_node_append):
return (node), so these macros/functions can be usefully chained with
g_node_new().
[GModule]
Fri Aug 14 02:24:39 1998 Tim Janik <timj@gtk.org>
* Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
to "GModule" upon compilation. we currently have to add this definition
to the DEFS variable.
* testgmodule.c: we need an ugly #undef G_LOG_DOMAIN at the start
of this file currently, since automake doesn't support per target
_CFLAGS yet.
1998-08-16 23:14:11 +02:00
|
|
|
gpointer *symbol);
|
1998-08-09 10:33:42 +02:00
|
|
|
|
|
|
|
/* retrive the file name from an existing module */
|
|
|
|
gchar* g_module_name (GModule *module);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GMODULE_H__ */
|