repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 940405
[wine/gsoc-2012-control.git]
/
include
/
options.h
blob
ae38f73448f4102c62c5ab77e125f78e9ad053c0
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
};
20
21
extern
struct
options Options
;
22
23
#endif