Check if any Scilab graphics have been opened.
int ScilabHaveAGraph(void);
Returns if there is any Scilab graphics opened.
// A simple ScilabHaveAGraph example int code=SendScilabJob("plot3d()"); if (ScilabHaveAGraph()){ printf("Graphics\n"); }else{ printf("NO Graphics\n"); }