diff options
Diffstat (limited to 'dln.h')
| -rw-r--r-- | dln.h | 28 |
1 files changed, 5 insertions, 23 deletions
@@ -1,3 +1,5 @@ +#ifndef DLN_H +#define DLN_H /********************************************************************** dln.h - @@ -9,24 +11,7 @@ **********************************************************************/ -#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 - -#undef _ -#ifdef HAVE_PROTOTYPES -# define _(args) args -#else -# define _(args) () -#endif +#include "ruby/defines.h" /* for RUBY_SYMBOL_EXPORT_BEGIN */ RUBY_SYMBOL_EXPORT_BEGIN @@ -39,12 +24,9 @@ RUBY_SYMBOL_EXPORT_BEGIN 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); - -#ifdef USE_DLN_A_OUT -extern char *dln_argv0; -#endif - void *dln_load(const char*); +void *dln_load_feature(const char*, const char*); +void *dln_symbol(void*,const char*); RUBY_SYMBOL_EXPORT_END |
