DisableInteractiveMode — Disables some features (plotting, gui creation, Tcl/Tk...) and leaves only the computing engine
void DisableInteractiveMode(void);
// 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);
}
}