https://github.com/jrincayc/ucblogo-code
Revision 2d09c86d30188c24158b4142f77b8699ab2b8b13 authored by Joshua J. Cogliati on 28 December 2020, 18:51:55 UTC, committed by Joshua J. Cogliati on 28 December 2020, 18:51:55 UTC
1 parent 5d18e80
Raw File
Tip revision: 2d09c86d30188c24158b4142f77b8699ab2b8b13 authored by Joshua J. Cogliati on 28 December 2020, 18:51:55 UTC
Updating README to mention releases and wxWidgets and 6.2 changes.
Tip revision: 2d09c86
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