https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: 07e7e89a4cfcdb7d1e78df005dd8069ab9133ace authored by Joshua Cogliati on 08 January 2023, 16:24:02 UTC
Merge pull request #144 from dmalec/ISSUE-143-CICD-ACTION-VERSION
Tip revision: 07e7e89
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