1
|
1 // dynamic-ld.h -*- C++ -*- |
|
2 /* |
|
3 |
383
|
4 Copyright (C) 1993, 1994 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
|
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
|
21 |
|
22 */ |
|
23 |
383
|
24 #if !defined (octave_dynamic_ld_h) |
|
25 #define octave_dynamic_ld_h 1 |
1
|
26 |
497
|
27 #include "oct-obj.h" |
1
|
28 |
527
|
29 typedef Octave_object (*builtin_fcn_ptr) (const Octave_object&, int); |
1
|
30 |
164
|
31 extern void octave_dld_tc2_unlink_by_symbol (const char *name, int hard = 1); |
|
32 |
|
33 extern void octave_dld_tc2_unlink_by_file (const char *name, int hard = 1); |
1
|
34 |
527
|
35 extern builtin_fcn_ptr octave_dld_tc2 (const char *name, const char *fcn); |
1
|
36 |
497
|
37 extern Octave_object octave_dld_tc2_and_go (const Octave_object&, |
506
|
38 int nargout, |
497
|
39 const char *name, |
527
|
40 const char *fcn); |
1
|
41 |
|
42 #endif |
|
43 |
|
44 /* |
|
45 ;;; Local Variables: *** |
|
46 ;;; mode: C++ *** |
|
47 ;;; page-delimiter: "^/\\*" *** |
|
48 ;;; End: *** |
|
49 */ |