Changeset 1363 for trunk/include/win/options.h
- Timestamp:
- Oct 19, 1999, 8:29:47 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/options.h
r4 r1363 1 /* $Id: options.h,v 1. 1 1999-05-24 20:19:16 ktkExp $ */1 /* $Id: options.h,v 1.2 1999-10-19 18:29:47 cbratschi Exp $ */ 2 2 3 3 /* … … 5 5 * 6 6 * Copyright 1994 Alexandre Julliard 7 * Copyright 1999 Christoph Bratschi 7 8 */ 8 9 … … 13 14 14 15 /* Supported languages */ 15 /* When adding a new language look at ole/ole2nls.c 16 /* When adding a new language look at ole/ole2nls.c 16 17 * for the LANG_Xx name to choose, and uncomment there 17 18 * the proper case line 18 19 */ 19 20 typedef enum 20 { LANG_Xx, /* Just to ensure value 0 is not used */ 21 { LANG_Xx, /* Just to ensure value 0 is not used */ 21 22 LANG_En, /* English */ 22 23 LANG_Es, /* Spanish */ … … 70 71 int debug; 71 72 int failReadOnly; /* Opening a read only file will fail 72 73 if write access is requested */ 73 74 WINE_MODE mode; /* Start Wine in selected mode 74 75 (standard/enhanced) */ 75 76 WINE_LANGUAGE language; /* Current language */ 76 int managed; 77 int managed; /* Managed windows */ 77 78 int perfectGraphics; /* Favor correctness over speed for graphics */ 78 79 int noDGA; /* Disable XFree86 DGA extensions */ … … 83 84 extern struct options Options; 84 85 85 /* Profile functions */86 /* Odin profile functions */ 86 87 87 extern int PROFILE_LoadWineIni(void); 88 extern void PROFILE_UsageWineIni(void); 89 extern int PROFILE_GetWineIniString( const char *section, const char *key_name, 90 const char *def, char *buffer, int len ); 91 extern int PROFILE_GetWineIniInt( const char *section, const char *key_name, 92 int def ); 93 extern int PROFILE_EnumerateWineIniSection( 94 char const *section, 95 void (*callback)(char const *key, char const *name, void *user), 96 void *userptr ); 97 extern int PROFILE_GetWineIniBool( char const *section, char const *key_name, 98 int def ); 99 extern char* PROFILE_GetStringItem( char* ); 88 #define ODINCOLORS "COLORS" 89 #define ODINDIRECTORIES "DIRECTORIES" 90 91 int WINAPI PROFILE_GetOdinIniString(LPCSTR section,LPCSTR key_name,LPCSTR def,LPCSTR buffer,int len); 92 int WINAPI PROFILE_SetOdinIniString(LPCSTR section,LPCSTR key_name,LPCSTR value); 93 int WINAPI PROFILE_GetOdinIniInt(LPCSTR section,LPCSTR key_name,int def); 94 int WINAPI PROFILE_SetOdinIniInt(LPCSTR section,LPCSTR key_name,int value); 95 int WINAPI PROFILE_GetOdinIniBool(LPCSTR section,LPCSTR key_name,int def); 96 int WINAPI PROFILE_SetOdinIniBool(LPCSTR section,LPCSTR key_name,int value); 97 int WINAPI PROFILE_SaveOdinIni(void); 100 98 101 99 /* Version functions */
Note:
See TracChangeset
for help on using the changeset viewer.