repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 940518
[wine.git]
/
include
/
options.h
blob
da5b598b95f72a967c7f3fe5f381c2d85de23578
1
/*
2
* Command-line options.
3
*
4
* Copyright 1994 Alexandre Julliard
5
*/
6
7
#ifndef OPTIONS_H
8
#define OPTIONS_H
9
10
struct
options
11
{
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
;
20
};
21
22
extern
struct
options Options
;
23
24
#endif