fpc/packages/extra/gtk/glib/gmodule.pp

102 lines
2.9 KiB
ObjectPascal

{
$Id$
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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
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.
}
unit gmodule;
interface
{$mode objfpc}
{ Always use smartlinking for win32, this solves some undefined functions
in the development gtk versions which change often (PFV) }
{$ifdef win32}
{$smartlink on}
{$endif}
uses
glib;
{$ifdef win32}
const
gmoduledll='libgmodule-2.0-0';
{$define gtkwin}
{$packrecords C}
{$else}
{$ifdef os2}
const
gmoduledll='gmodule';
{$define gtkos2}
{$packrecords C}
{$else}
const
gmoduledll='gmodule';
{$packrecords C}
{$endif}
{$endif}
{$ifndef gtkos2}
var
g_log_domain_gmodule : Pgchar;external gmoduledll name 'g_log_domain_gmodule';
{$endif}
type
PGModule=pointer;
TGModuleFlags = longint;
const
G_MODULE_BIND_LAZY = 1 shl 0;
G_MODULE_BIND_MASK = 1;
type
TGModuleCheckInit = function (module:PGModule):Pgchar;cdecl;
TGModuleUnload = procedure (module:PGModule);cdecl;
function g_module_supported:gboolean;cdecl;external gmoduledll name 'g_module_supported';
function g_module_open(file_name:Pgchar; flags:TGModuleFlags):PGModule;cdecl;external gmoduledll name 'g_module_open';
function g_module_close(module:PGModule):gboolean;cdecl;external gmoduledll name 'g_module_close';
procedure g_module_make_resident(module:PGModule);cdecl;external gmoduledll name 'g_module_make_resident';
function g_module_error:Pgchar;cdecl;external gmoduledll name 'g_module_error';
function g_module_symbol(module:PGModule; symbol_name:Pgchar; symbol:Pgpointer):gboolean;cdecl;external gmoduledll name 'g_module_symbol';
function g_module_name(module:PGModule):Pgchar;cdecl;external gmoduledll name 'g_module_name';
function g_module_build_path(directory:Pgchar; module_name:Pgchar):Pgchar;cdecl;external gmoduledll name 'g_module_build_path';
implementation
end.
{
$Log$
Revision 1.4 2003-08-06 07:28:21 michael
+ Patch from Marc Weustinck to fix Win32 version
Revision 1.3 2003/03/02 02:10:19 hajny
+ OS/2 support for GTK and X11 added by Yuri
Revision 1.2 2002/09/07 15:42:59 peter
* old logs removed and tabs fixed
Revision 1.1 2002/01/29 17:55:08 peter
* splitted to base and extra
}