mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +02:00
80 lines
2 KiB
C
80 lines
2 KiB
C
/* ltdl.c -- system independent dlopen wrapper
|
|
Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
|
|
Originally by Thomas Tanner <tanner@ffii.org>
|
|
This file is part of GNU Libtool.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
As a special exception to the GNU Lesser General Public License,
|
|
if you distribute this file as part of a program or library that
|
|
is built using GNU libtool, you may include it under the same
|
|
distribution terms that you use for the rest of that program.
|
|
|
|
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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 USA
|
|
|
|
*/
|
|
|
|
#include "guile-ltdl.h"
|
|
|
|
#define lt_dlhandle_struct scm_i_lt_dlhandle_struct
|
|
#define SCM_INSERTED_DLSYMLIST_STRUCT_DECL scm_i_lt_dlsymlist_struct
|
|
|
|
#define LT_SCOPE static
|
|
#define SCMLTXT static
|
|
#define SCMLTSTATIC static
|
|
|
|
#ifdef __GNUC__
|
|
#define SCM_UNUSED __attribute__ ((unused))
|
|
#else
|
|
#define SCM_UNUSED
|
|
#endif
|
|
|
|
#include "raw-ltdl.h"
|
|
#include "raw-ltdl.c"
|
|
|
|
void
|
|
scm_lt_dlpreload_default (const scm_lt_dlsymlist *preloads)
|
|
{
|
|
lt_dlpreload_default(preloads);
|
|
}
|
|
|
|
int
|
|
scm_lt_dlinit (void)
|
|
{
|
|
return lt_dlinit ();
|
|
}
|
|
|
|
scm_lt_dlhandle
|
|
scm_lt_dlopenext (const char *filename)
|
|
{
|
|
return lt_dlopenext (filename);
|
|
}
|
|
|
|
scm_lt_ptr
|
|
scm_lt_dlsym (scm_lt_dlhandle handle, const char *name)
|
|
{
|
|
return lt_dlsym (handle, name);
|
|
}
|
|
|
|
const char *
|
|
scm_lt_dlerror (void)
|
|
{
|
|
return lt_dlerror ();
|
|
}
|
|
|
|
int
|
|
scm_lt_dlclose (scm_lt_dlhandle handle)
|
|
{
|
|
return lt_dlclose (handle);
|
|
}
|