Go to the source code of this file.
Macros | |
#define | DEFMETHOD_DLD(name, interp_name, args_name, nargout_name, doc) |
Macro to define an at run time dynamically loadable builtin method. More... | |
#define | DEFMETHOD_STATIC_DLD(name, interp_name, args_name, nargout_name, doc) |
#define | DEFMETHODX_DLD(name, fname, gname, interp_name, args_name, nargout_name, doc) |
#define | DEFMETHODX_STATIC_DLD(name, fname, gname, interp_name, args_name, nargout_name, doc) |
#define | DEFUN_DLD(name, args_name, nargout_name, doc) |
Macro to define an at run time dynamically loadable builtin function. More... | |
#define | DEFUN_STATIC_DLD(name, args_name, nargout_name, doc) |
#define | DEFUNX_DLD(name, fname, gname, args_name, nargout_name, doc) |
#define | DEFUNX_STATIC_DLD(name, fname, gname, args_name, nargout_name, doc) |
#define DEFMETHOD_DLD | ( | name, | |
interp_name, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Macro to define an at run time dynamically loadable builtin method.
For detailed information, see Macros.
name | The unquoted name of the method that should be installed on the 'octave::symbol_table' and can be called by the interpreter. Internally, the method name is prepended by an 'F'. |
interp_name | The name of the 'octave::interpreter' reference that can be used by this method. If this value is omitted, there is no access to the interpreter and one should use DEFUN to define a function instead. |
args_name | The name of the octave_value_list variable used to pass the argument list to this method. If this value is omitted, the method cannot access the argument list. |
nargout_name | The name of the 'int' variable used to pass the number of output arguments this method is expected to produce from the caller. If this value is omitted, the method cannot access this number. |
doc | Texinfo help text (docstring) for the method. |
Definition at line 99 of file defun-dld.h.
#define DEFMETHOD_STATIC_DLD | ( | name, | |
interp_name, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 124 of file defun-dld.h.
#define DEFMETHODX_DLD | ( | name, | |
fname, | |||
gname, | |||
interp_name, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 104 of file defun-dld.h.
#define DEFMETHODX_STATIC_DLD | ( | name, | |
fname, | |||
gname, | |||
interp_name, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 130 of file defun-dld.h.
#define DEFUN_DLD | ( | name, | |
args_name, | |||
nargout_name, | |||
doc | |||
) |
Macro to define an at run time dynamically loadable builtin function.
For detailed information, see Macros.
name | The unquoted name of the function that should be installed on the 'octave::symbol_table' and can be called by the interpreter. Internally, the function name is prepended by an 'F'. |
args_name | The name of the octave_value_list variable used to pass the argument list to this function. If this value is omitted, the function cannot access the argument list. |
nargout_name | The name of the 'int' variable used to pass the number of output arguments this function is expected to produce from the caller. If this value is omitted, the function cannot access this number. |
doc | Texinfo help text (docstring) for the function. |
Definition at line 61 of file defun-dld.h.
#define DEFUN_STATIC_DLD | ( | name, | |
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 113 of file defun-dld.h.
#define DEFUNX_DLD | ( | name, | |
fname, | |||
gname, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 66 of file defun-dld.h.
#define DEFUNX_STATIC_DLD | ( | name, | |
fname, | |||
gname, | |||
args_name, | |||
nargout_name, | |||
doc | |||
) |
Definition at line 118 of file defun-dld.h.