Release 940201
[wine.git] / include / options.h
bloba783b3216b799d8274b2b1e2b54eef4e11a37a0d
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 int usePrivateMap;
14 int synchronous;
15 short cmdShow;
18 extern struct options Options;
20 #endif