The FSF has a new address.
[bpt/guile.git] / libguile / dynl.h
CommitLineData
8c494e99
DH
1/* classes: h_files */
2
3#ifndef SCM_DYNL_H
4#define SCM_DYNL_H
5
6/* Copyright (C) 1996,1998,2000,2001 Free Software Foundation, Inc.
7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
8c494e99 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
1edae076 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
8c494e99 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
92205699 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 21 */
1edae076 22
8c494e99 23\f
1edae076
MV
24
25#include "libguile/__scm.h"
26
27\f
28
33b001fd
MV
29SCM_API SCM scm_dynamic_link (SCM fname);
30SCM_API SCM scm_dynamic_unlink (SCM dobj);
31SCM_API SCM scm_dynamic_object_p (SCM obj);
32SCM_API SCM scm_dynamic_func (SCM symb, SCM dobj);
33SCM_API SCM scm_dynamic_call (SCM symb, SCM dobj);
34SCM_API SCM scm_dynamic_args_call (SCM symb, SCM dobj, SCM args);
1edae076 35
33b001fd 36SCM_API void scm_init_dynamic_linking (void);
1edae076 37
8c494e99 38#endif /* SCM_DYNL_H */
89e00824
ML
39
40/*
41 Local Variables:
42 c-file-style: "gnu"
43 End:
44*/