2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
dln.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed Jan 19 16:53:09 JST 1994
|
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 1993-2000 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifndef DLN_H
|
|
|
|
#define DLN_H
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifndef _
|
|
|
|
#ifndef __STDC__
|
|
|
|
# define _(args) ()
|
1999-08-13 09:45:20 +04:00
|
|
|
# define const
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
# define _(args) args
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
char *dln_find_exe _((const char*,const char*));
|
|
|
|
char *dln_find_file _((const char*,const char*));
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifdef USE_DLN_A_OUT
|
|
|
|
extern char *dln_argv0;
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
void dln_load _((const char*));
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|