2 * Command-line options.
4 * Copyright 1994 Alexandre Julliard
7 #ifndef __WINE_OPTIONS_H
8 #define __WINE_OPTIONS_H
12 /* Supported languages */
13 /* When adding a new language look at ole/ole2nls.c
14 * for the LANG_Xx name to choose, and uncomment there
15 * the proper case line
18 { LANG_Xx
, /* Just to ensure value 0 is not used */
19 LANG_En
, /* English */
20 LANG_Es
, /* Spanish */
22 LANG_No
, /* Norwegian */
24 LANG_Fi
, /* Finnish */
27 LANG_Eo
, /* Esperanto */
28 LANG_It
, /* Italian */
30 LANG_Hu
, /* Hungarian */
32 LANG_Pt
, /* Portuguese */
33 LANG_Sv
, /* Swedish */
34 LANG_Ca
, /* Catalan */
36 LANG_Ru
, /* Russian */
46 extern const WINE_LANGUAGE_DEF Languages
[];
59 char * desktopGeometry
; /* NULL when no desktop */
60 char * programName
; /* To use when loading resources */
61 char * argv0
; /* argv[0] of Wine process */
62 char *dllFlags
; /* -dll flags (hack for Winelib support) */
65 int synchronous
; /* X synchronous mode */
66 int backingstore
; /* Use backing store */
69 int failReadOnly
; /* Opening a read only file will fail
70 if write access is requested */
71 WINE_MODE mode
; /* Start Wine in selected mode
72 (standard/enhanced) */
73 WINE_LANGUAGE language
; /* Current language */
74 int managed
; /* Managed windows */
75 int perfectGraphics
; /* Favor correctness over speed for graphics */
76 int noDGA
; /* Disable XFree86 DGA extensions */
77 char * configFileName
; /* Command line config file */
81 extern struct options Options
;
83 /* Profile functions */
85 extern int PROFILE_LoadWineIni(void);
86 extern void PROFILE_UsageWineIni(void);
87 extern int PROFILE_GetWineIniString( const char *section
, const char *key_name
,
88 const char *def
, char *buffer
, int len
);
89 extern int PROFILE_GetWineIniInt( const char *section
, const char *key_name
,
91 extern int PROFILE_EnumerateWineIniSection(
93 void (*callback
)(char const *key
, char const *name
, void *user
),
95 extern int PROFILE_GetWineIniBool( char const *section
, char const *key_name
,
97 extern char* PROFILE_GetStringItem( char* );
99 /* Version functions */
100 extern void VERSION_ParseWinVersion( const char *arg
);
101 extern void VERSION_ParseDosVersion( const char *arg
);
103 #endif /* __WINE_OPTIONS_H */