Release 940518
[wine.git] / include / options.h
blobda5b598b95f72a967c7f3fe5f381c2d85de23578
1 /*
2 * Command-line options.
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef OPTIONS_H
8 #define OPTIONS_H
10 struct options
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 short cmdShow;
18 int relay_debug;
19 int debug;
22 extern struct options Options;
24 #endif