https://github.com/jrincayc/ucblogo-code
Revision 5afb248a0a147ea979fec61685ab805ae89466f7 authored by Barak A. Pearlmutter on 19 October 2019, 14:51:53 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:36:14 UTC
1 parent 90ab668
Raw File
Tip revision: 5afb248a0a147ea979fec61685ab805ae89466f7 authored by Barak A. Pearlmutter on 19 October 2019, 14:51:53 UTC
make logolib/ more atomic; single copy of contents; UTF-8
Tip revision: 5afb248
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