git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@11503 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
286 B
Scilab
17 lines
286 B
Scilab
// loader the *.so
|
|
exec loader.sce;
|
|
|
|
a = 37
|
|
b = 42
|
|
|
|
// Now call our C function with a bunch of callbacks
|
|
|
|
printf("Trying some C callback functions\n");
|
|
printf(" a = %i\n", a);
|
|
printf(" b = %i\n", b);
|
|
printf(" ADD(a,b) = %i\n", do_op(a,b,funcvar_get()));
|
|
|
|
exit
|
|
|
|
|
|
|