blob: dabd5f1ca14acc35deb290743203226372ceee65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* appres.h : External defs for files needing the application
* resources.
*
* George Ferguson, ferguson@cs.rochester.edu, 12 Sep 1991.
*
*/
#ifndef APP_RESOURCES_H
#define APP_RESOURCES_H
typedef struct {
String widgets;
int alternate;
int port;
int debug;
} AppResources;
extern AppResources appResources;
#endif /* APP_RESOURCES_H */
|