diff options
author | rupak | 2019-10-10 12:57:46 +0530 |
---|---|---|
committer | rupak | 2019-10-10 12:57:46 +0530 |
commit | ac01f75eaa0475879647e8c6e1343e4c49d7c18c (patch) | |
tree | ceefa71219ca3021f572323b6f0217e0f8fab93b /sci_gateway/cpp/loader.sce | |
parent | 999122e511f5f2cabdff0bb26908db4e57dfcee2 (diff) | |
download | fossee-scilab-octave-toolbox-ac01f75eaa0475879647e8c6e1343e4c49d7c18c.tar.gz fossee-scilab-octave-toolbox-ac01f75eaa0475879647e8c6e1343e4c49d7c18c.tar.bz2 fossee-scilab-octave-toolbox-ac01f75eaa0475879647e8c6e1343e4c49d7c18c.zip |
added help for toolbox
Diffstat (limited to 'sci_gateway/cpp/loader.sce')
-rw-r--r-- | sci_gateway/cpp/loader.sce | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sci_gateway/cpp/loader.sce b/sci_gateway/cpp/loader.sce index dd2e723..d9123cf 100644 --- a/sci_gateway/cpp/loader.sce +++ b/sci_gateway/cpp/loader.sce @@ -2,19 +2,19 @@ // Generated by builder.sce : Please, do not edit this file // ---------------------------------------------------------------------------- // -libscilab_toolbox_path = get_absolute_file_path('loader.sce'); +libscilab_octave_path = get_absolute_file_path('loader.sce'); // // ulink previous function with same name -[bOK, ilib] = c_link('libscilab_toolbox'); +[bOK, ilib] = c_link('libscilab_octave'); if bOK then ulink(ilib); end // list_functions = [ 'octave_fun'; ]; -addinter(libscilab_toolbox_path + filesep() + 'libscilab_toolbox' + getdynlibext(), 'libscilab_toolbox', list_functions); +addinter(libscilab_octave_path + filesep() + 'libscilab_octave' + getdynlibext(), 'libscilab_octave', list_functions); // remove temp. variables on stack -clear libscilab_toolbox_path; +clear libscilab_octave_path; clear bOK; clear ilib; clear list_functions; |