diff src/defun-int.h @ 10887:f10d0bc8f9cc

make isargout available to DEFUNs
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 13 Aug 2010 10:14:52 +0200
parents ed6969880316
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/defun-int.h	Fri Aug 13 07:58:14 2010 +0200
+++ b/src/defun-int.h	Fri Aug 13 10:14:52 2010 +0200
@@ -72,6 +72,12 @@
     : octave_shlib (shl) { }
 };
 
+extern OCTINTERP_API bool
+defun_isargout (int, int);
+
+extern OCTINTERP_API void
+defun_isargout (int, int, bool *);
+
 #define DECLARE_FUNX(name, args_name, nargout_name) \
   OCTAVE_EXPORT octave_value_list \
   name (const octave_value_list& args_name, int nargout_name)