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 */
44 extern const WINE_LANGUAGE_DEF Languages[];
57 char * desktopGeometry; /* NULL when no desktop */
58 char * programName; /* To use when loading resources */
59 char * argv0; /* argv[0] of Wine process */
60 char *dllFlags; /* -dll flags (hack for Winelib support) */
63 int synchronous; /* X synchronous mode */
64 int backingstore; /* Use backing store */
67 int failReadOnly; /* Opening a read only file will fail
68 if write access is requested */
69 WINE_MODE mode; /* Start Wine in selected mode
70 (standard/enhanced) */
71 WINE_LANGUAGE language; /* Current language */
72 int managed; /* Managed windows */
73 int perfectGraphics; /* Favor correctness over speed for graphics */
74 int noDGA; /* Disable XFree86 DGA extensions */
75 char * configFileName; /* Command line config file */
79 extern struct options Options;
81 /* Profile functions */
83 extern int PROFILE_LoadWineIni(void);
84 extern void PROFILE_UsageWineIni(void);
85 extern int PROFILE_GetWineIniString( const char *section, const char *key_name,
86 const char *def, char *buffer, int len );
87 extern int PROFILE_GetWineIniInt( const char *section, const char *key_name,
89 extern int PROFILE_EnumerateWineIniSection(
91 void (*callback)(char const *key, char const *name, void *user),
93 extern int PROFILE_GetWineIniBool( char const *section, char const *key_name,
95 extern char* PROFILE_GetStringItem( char* );
97 /* Version functions */
98 extern void VERSION_ParseWinVersion( const char *arg );
99 extern void VERSION_ParseDosVersion( const char *arg );
101 #endif /* __WINE_OPTIONS_H */