https://github.com/jrincayc/ucblogo-code
Revision 226ed705658f61657e3856e7d1347202fb80c695 authored by Joshua Cogliati on 02 July 2021, 23:54:23 UTC, committed by GitHub on 02 July 2021, 23:54:23 UTC
2 parent s a484d9b + bceccad
Raw File
Tip revision: 226ed705658f61657e3856e7d1347202fb80c695 authored by Joshua Cogliati on 02 July 2021, 23:54:23 UTC
Merge pull request #106 from jrincayc/windows_update
Tip revision: 226ed70
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