comparison src/defun-int.h @ 4448:042cdbb7f317

[project @ 2003-07-08 19:14:55 by jwe]
author jwe
date Tue, 08 Jul 2003 19:14:55 +0000
parents 90e44267e8cf
children 5e2c68946f30
comparison
equal deleted inserted replaced
4447:252b9162c084 4448:042cdbb7f317
85 #define DEFINE_FUN_INSTALLER_FUN3(name, doc, cxx_abi) \ 85 #define DEFINE_FUN_INSTALLER_FUN3(name, doc, cxx_abi) \
86 extern "C" \ 86 extern "C" \
87 bool \ 87 bool \
88 FS ## name ## _ ## cxx_abi (const octave_shlib& shl) \ 88 FS ## name ## _ ## cxx_abi (const octave_shlib& shl) \
89 { \ 89 { \
90 check_version (OCTAVE_VERSION, #name); \ 90 check_version (OCTAVE_API_VERSION, #name); \
91 install_dld_function (F ## name, #name, shl, doc); \ 91 install_dld_function (F ## name, #name, shl, doc); \
92 return error_state ? false : true; \ 92 return error_state ? false : true; \
93 } 93 }
94 94
95 95