2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gbx_extern.h
|
|
|
|
|
2017-01-13 04:29:42 +01:00
|
|
|
(c) 2000-2017 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GBX_EXTERN_H
|
|
|
|
#define __GBX_EXTERN_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
|
|
|
#ifndef DONT_USE_LTDL
|
|
|
|
#include <ltdl.h>
|
|
|
|
#else
|
|
|
|
#define lt_dlsym dlsym
|
|
|
|
#define lt_dlclose dlclose
|
|
|
|
#define lt_dlerror dlerror
|
|
|
|
#define lt_dlhandle void *
|
|
|
|
#endif
|
|
|
|
|
2010-07-14 03:50:18 +02:00
|
|
|
#include "gbx_value.h"
|
|
|
|
|
2012-06-15 03:27:31 +02:00
|
|
|
typedef
|
|
|
|
struct EXTERN_FUNC_INFO {
|
|
|
|
void *call;
|
2012-06-19 23:23:49 +02:00
|
|
|
char *alias;
|
2012-06-15 03:27:31 +02:00
|
|
|
}
|
|
|
|
EXTERN_FUNC_INFO;
|
|
|
|
|
|
|
|
|
2010-07-14 18:33:29 +02:00
|
|
|
void EXTERN_release(void);
|
2008-01-17 22:39:26 +01:00
|
|
|
void EXTERN_exit(void);
|
2012-06-15 03:27:31 +02:00
|
|
|
EXTERN_FUNC_INFO EXTERN_get_function_info(CLASS_EXTERN *ext);
|
2010-07-14 18:33:29 +02:00
|
|
|
void EXTERN_call(void);
|
2010-07-14 03:50:18 +02:00
|
|
|
void *EXTERN_make_callback(VALUE_FUNCTION *value);
|
2011-05-18 17:02:49 +02:00
|
|
|
void *EXTERN_get_symbol(const char *library, const char *symbol);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#endif
|