Release 940405
[wine.git] / include / options.h
blobae38f73448f4102c62c5ab77e125f78e9ad053c0
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;
21 extern struct options Options;
23 #endif