https://github.com/jrincayc/ucblogo-code
Revision 57f67b0eec20310e32ceddf8aaed3cbeaf6ed9b3 authored by Barak A. Pearlmutter on 22 July 2020, 19:39:56 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:39:56 UTC
1 parent e68ea02
Raw File
Tip revision: 57f67b0eec20310e32ceddf8aaed3cbeaf6ed9b3 authored by Barak A. Pearlmutter on 22 July 2020, 19:39:56 UTC
autoreconf
Tip revision: 57f67b0
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