FreeCalypso > hg > freecalypso-ui-dev
comparison lcdemu/globals.c @ 0:e7f1035f10d4
lcdemu: initial import from freecalypso-tools
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 14 Mar 2018 18:16:45 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7f1035f10d4 |
---|---|
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)(); |