blob: 4fdafc1342b70c64b796fcd49182cff6636143b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* xarchie.h : Definitions of the X globals and misc. functions
*
* George Ferguson, ferguson@cs.rochester.edu, 4 Sep 1991.
*
*/
#ifndef XARCHIE_H
#define XARCHIE_H
extern Display *display;
extern Screen *screen;
extern Window root;
extern XtAppContext appContext;
extern Widget toplevel;
extern Widget hostList,locationList,fileList;
extern Widget searchText;
extern void doPendingEvents();
extern void initWidgetsFromString();
extern void displayHostInfo(), clearHostInfo();
extern void displayLocationInfo(), clearLocationInfo();
extern void displayFileInfo(), clearFileInfo();
extern void setText(), setLabel();
extern void status0(), status1(), status2();
extern void fail0(), fail1();
#endif /* XARCHIE_H */
|