1 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
2 // Copyright (C) 2009-2011 - DIGITEO - Allan CORNET
4 // This file is released under the 3-clause BSD license. See COPYING-BSD.
6 function subdemolist = demo_gateway()
8 demopath = get_absolute_file_path("dynamic_link.dem.gateway.sce");
9 add_demo(_("Dynamic link"), demopath+"dynamic_link.dem.gateway.sce");
11 subdemolist = [_("Call a C function") , "call_c.sce" ;
12 _("Call a Fortran subroutine") , "call_fortran.sce" ;];
14 subdemolist(:,2) = demopath + subdemolist(:,2)
17 subdemolist = demo_gateway();