diff options
Diffstat (limited to 'dln.h')
| -rw-r--r-- | dln.h | 43 |
1 files changed, 13 insertions, 30 deletions
@@ -1,3 +1,5 @@ +#ifndef DLN_H +#define DLN_H /********************************************************************** dln.h - @@ -9,42 +11,23 @@ **********************************************************************/ -#ifndef DLN_H -#define DLN_H - -#ifdef __cplusplus -# ifndef HAVE_PROTOTYPES -# define HAVE_PROTOTYPES 1 -# endif -# ifndef HAVE_STDARG_PROTOTYPES -# define HAVE_STDARG_PROTOTYPES 1 -# endif -#endif +#include "ruby/defines.h" /* for RUBY_SYMBOL_EXPORT_BEGIN */ -#undef _ -#ifdef HAVE_PROTOTYPES -# define _(args) args -#else -# define _(args) () -#endif +RUBY_SYMBOL_EXPORT_BEGIN -#if defined __GNUC__ && __GNUC__ >= 4 -#pragma GCC visibility push(default) +#ifndef DLN_FIND_EXTRA_ARG +#define DLN_FIND_EXTRA_ARG #endif - -DEPRECATED(char *dln_find_exe(const char*,const char*)); -DEPRECATED(char *dln_find_file(const char*,const char*)); -char *dln_find_exe_r(const char*,const char*,char*,size_t); -char *dln_find_file_r(const char*,const char*,char*,size_t); - -#ifdef USE_DLN_A_OUT -extern char *dln_argv0; +#ifndef DLN_FIND_EXTRA_ARG_DECL +#define DLN_FIND_EXTRA_ARG_DECL #endif +char *dln_find_exe_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL); +char *dln_find_file_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL); void *dln_load(const char*); +void *dln_load_feature(const char*, const char*); +void *dln_symbol(void*,const char*); -#if defined __GNUC__ && __GNUC__ >= 4 -#pragma GCC visibility pop -#endif +RUBY_SYMBOL_EXPORT_END #endif |
