void screen_dump() { if (term == NULL) { int_error(c_token, ""); } if (strcmp(term->name, "windows") == 0) GraphPrint(graphwin); #ifdef WXWIDGETS else if (strcmp(term->name, "wxt") == 0) wxt_screen_dump(); #endif #ifdef QTTERM //else if (strcmp(term->name, "qt") == 0) #endif else int_error(c_token, "screendump not supported for terminal `%s`", term->name); }
void screen_dump() { GraphPrint(graphwin); }