From ac01f75eaa0475879647e8c6e1343e4c49d7c18c Mon Sep 17 00:00:00 2001 From: rupak Date: Thu, 10 Oct 2019 12:57:46 +0530 Subject: added help for toolbox --- sci_gateway/cpp/loader.sce | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sci_gateway/cpp/loader.sce') 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; -- cgit