https://github.com/jrincayc/ucblogo-code
Revision bae19ddaf4d2a1564c7b3d9bb7b2a1a9a88414ef authored by Joshua J. Cogliati on 19 December 2020, 02:36:06 UTC, committed by Joshua J. Cogliati on 19 December 2020, 02:49:29 UTC
1 parent 53367e1
Raw File
Tip revision: bae19ddaf4d2a1564c7b3d9bb7b2a1a9a88414ef authored by Joshua J. Cogliati on 19 December 2020, 02:36:06 UTC
Windows updates for build system changes and wxWidgets 3.0.5
Tip revision: bae19dd
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