Release 940706
[wine] / include / options.h
1 /*
2  * Command-line options.
3  *
4  * Copyright 1994 Alexandre Julliard
5  */
6
7 #ifndef OPTIONS_H
8 #define OPTIONS_H
9
10 struct options
11 {
12     char * spyFilename;
13     char * desktopGeometry; /* NULL when no desktop */
14     char * programName;     /* To use when loading resources */
15     int    usePrivateMap;
16     int    synchronous;
17     int    nobackingstore;
18     short  cmdShow;
19     int    relay_debug;
20     int    debug;
21 };
22
23 extern struct options Options;
24
25 #endif