25 lines
482 B
C
25 lines
482 B
C
/*
|
|
* Command-line options.
|
|
*
|
|
* Copyright 1994 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef OPTIONS_H
|
|
#define OPTIONS_H
|
|
|
|
struct options
|
|
{
|
|
char * spyFilename;
|
|
char * desktopGeometry; /* NULL when no desktop */
|
|
char * programName; /* To use when loading resources */
|
|
int usePrivateMap;
|
|
int synchronous; /* X synchronous mode */
|
|
int backingstore; /* Use backing store */
|
|
short cmdShow;
|
|
int debug;
|
|
};
|
|
|
|
extern struct options Options;
|
|
|
|
#endif
|