https://github.com/jrincayc/ucblogo-code
Revision 100372978fbeec801e4fd96b8cc62f63ad92f7aa authored by Dan Malec on 02 March 2021, 01:59:39 UTC, committed by Dan Malec on 02 March 2021, 01:59:39 UTC
1 parent c01254e
Raw File
Tip revision: 100372978fbeec801e4fd96b8cc62f63ad92f7aa authored by Dan Malec on 02 March 2021, 01:59:39 UTC
ISSUE-97: Balance calls to setjmp/longjmp regardless of wxWidgets
Tip revision: 1003729
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