[ruby/etc] bump up to 1.3.1
[ruby-80x24.org.git] / dln.h
blob902f753450a30a32f50a509a7b74d47a92623fd9
1 #ifndef DLN_H
2 #define DLN_H
3 /**********************************************************************
5 dln.h -
7 $Author$
8 created at: Wed Jan 19 16:53:09 JST 1994
10 Copyright (C) 1993-2007 Yukihiro Matsumoto
12 **********************************************************************/
14 #include "ruby/defines.h" /* for RUBY_SYMBOL_EXPORT_BEGIN */
16 RUBY_SYMBOL_EXPORT_BEGIN
18 #ifndef DLN_FIND_EXTRA_ARG
19 #define DLN_FIND_EXTRA_ARG
20 #endif
21 #ifndef DLN_FIND_EXTRA_ARG_DECL
22 #define DLN_FIND_EXTRA_ARG_DECL
23 #endif
25 char *dln_find_exe_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
26 char *dln_find_file_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
27 void *dln_load(const char*);
29 RUBY_SYMBOL_EXPORT_END
31 #endif