Release 950817
[wine/multimedia.git] / include / options.h
blobee1e3dc8087bbf3c71d9846b25173cb0c1c807cc
1 /*
2 * Command-line options.
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef OPTIONS_H
8 #define OPTIONS_H
10 struct options
12 char * desktopGeometry; /* NULL when no desktop */
13 char * programName; /* To use when loading resources */
14 int usePrivateMap;
15 int synchronous; /* X synchronous mode */
16 int backingstore; /* Use backing store */
17 short cmdShow;
18 int debug;
19 int allowReadOnly; /* Opening a read only file will succeed even
20 if write access is requested */
21 int enhanced; /* Start Wine in enhanced mode */
22 int ipc; /* Use IPC mechanisms */
25 extern struct options Options;
27 #endif