https://github.com/jrincayc/ucblogo-code
Revision dd7d89c8dae3beab9b67270ae2415d6a406b2521 authored by Barak A. Pearlmutter on 19 October 2019, 15:15:03 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:36:14 UTC
1 parent 876ae78
Raw File
Tip revision: dd7d89c8dae3beab9b67270ae2415d6a406b2521 authored by Barak A. Pearlmutter on 19 October 2019, 15:15:03 UTC
break out helpfiles/Makefile.am
Tip revision: dd7d89c
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