https://github.com/jrincayc/ucblogo-code
Revision 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC, committed by GitHub on 22 November 2020, 22:49:35 UTC
FEATURE-CI: Initial pass at having a CI build.
2 parent s 0b2175b + ae144ba
Raw File
Tip revision: 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC
Merge pull request #66 from dmalec/FEATURE-CI
Tip revision: 439651e
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