https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: ac1bb38520fa1fb925e0308c4f73f7a899acbf77 authored by Joshua J. Cogliati on 26 March 2023, 18:09:31 UTC
Updating version to 6.2.4
Tip revision: ac1bb38
nographics.c

/* A dummy graphics implementation for Unix */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef X_DISPLAY_MISSING

int pw, ph, pc, pm, pv, px, py, bg;

#ifndef HAVE_WX
char *LogoPlatformName="Unix-Nographics";

void nop()
{
}
#endif
#endif
back to top