comparison src/defun-int.h @ 7101:2c5b14c60c6c

[project @ 2007-11-06 16:26:13 by jwe]
author jwe
date Tue, 06 Nov 2007 16:26:13 +0000
parents a1dbe9d80eee
children 745a8299c2b5
comparison
equal deleted inserted replaced
7100:28607462901f 7101:2c5b14c60c6c
93 extern "C" \ 93 extern "C" \
94 OCTAVE_EXPORT \ 94 OCTAVE_EXPORT \
95 bool \ 95 bool \
96 fsname ## _ ## cxx_abi (const octave_shlib& shl, bool relative) \ 96 fsname ## _ ## cxx_abi (const octave_shlib& shl, bool relative) \
97 { \ 97 { \
98 bool retval = true; \
99 \
98 check_version (OCTAVE_API_VERSION, name); \ 100 check_version (OCTAVE_API_VERSION, name); \
99 install_dld_function (fname, name, shl, doc, false, relative); \ 101 \
100 return error_state ? false : true; \ 102 if (error_state) \
103 retval = false; \
104 else \
105 install_dld_function (fname, name, shl, doc, false, relative); \
106 \
107 return retval; \
101 } 108 }
102 109
103 // MAKE_BUILTINS is defined to extract function names and related 110 // MAKE_BUILTINS is defined to extract function names and related
104 // information and create the *.df files that are eventually used to 111 // information and create the *.df files that are eventually used to
105 // create the builtins.cc file. 112 // create the builtins.cc file.