FreeCalypso > hg > freecalypso-ui-dev
annotate lcdemu/globals.c @ 9:6c35c9f2ecab
README: update for the fc-host-tools-r8 release
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 18 Mar 2018 21:30:10 +0000 |
parents | e7f1035f10d4 |
children |
rev | line source |
---|---|
0
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * LCDemu based on HECterm by the same author |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 * Definitions of global variables |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 */ |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 #include <X11/Xlib.h> |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 #include <X11/Xresource.h> |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 #include <X11/Xutil.h> |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 char *progbasename, *proginstancename; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 char *mydisplayname; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 Display *mydisplay; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 Window mainwindow; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 GC mainwingc; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 int display_depth; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 XrmDatabase xrmdb_defaults, xrmdb_displayres, xrmdb_cmdline; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 XrmQuark xrmquark_topclass, xrmquark_topinstance; |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 |
e7f1035f10d4
lcdemu: initial import from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 XImage *(*convert_function)(); |