https://github.com/jrincayc/ucblogo-code
Revision 12004aa1c81ad9c98759212f4836c386e5017b72 authored by Joshua Cogliati on 19 October 2020, 23:18:05 UTC, committed by GitHub on 19 October 2020, 23:18:05 UTC
ISSUE-44: Manually convert ASCII buffer into wxString during copy operation so clipboard is populated
2 parent s 3b967a8 + 30201d1
Raw File
Tip revision: 12004aa1c81ad9c98759212f4836c386e5017b72 authored by Joshua Cogliati on 19 October 2020, 23:18:05 UTC
Merge pull request #58 from dmalec/ISSUE-44
Tip revision: 12004aa
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