Name

DisableInteractiveMode — Disables some features (plotting, gui creation, Tcl/Tk...) and leaves only the computing engine

Synopsis

void DisableInteractiveMode(void);

Description

Calling this fonction will disable some features of Scilab.

Examples

 
// A simple DisableInteractiveMode example
 
DisableInteractiveMode();
int code=SendScilabJob("plot3d()"); /* This will failed since plot3d is
                                       among the disable features*/
if (code!=0){
 char lastjob[4096];
 if (GetLastJob(lastjob,4096))  {
  printf("Failed command: %s\n",lastjob);
 }
}
 

See Also

Call_Scilab,api Scilab,Compile and run with call_scilab SendScilabJob TerminateScilab, Double Management, Boolean Management, Complex Management, String Management

Authors

Sylvestre Ledru