FreeCalypso > hg > freecalypso-tools
comparison lcdemu/globals.c @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 /* | |
2 * LCDemu based on HECterm by the same author | |
3 * Definitions of global variables | |
4 */ | |
5 | |
6 #include <X11/Xlib.h> | |
7 #include <X11/Xresource.h> | |
8 #include <X11/Xutil.h> | |
9 | |
10 char *progbasename, *proginstancename; | |
11 char *mydisplayname; | |
12 Display *mydisplay; | |
13 Window mainwindow; | |
14 GC mainwingc; | |
15 int display_depth; | |
16 | |
17 XrmDatabase xrmdb_defaults, xrmdb_displayres, xrmdb_cmdline; | |
18 XrmQuark xrmquark_topclass, xrmquark_topinstance; | |
19 | |
20 XImage *(*convert_function)(); |