Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Profile functions |
| 3 | * |
| 4 | * Copyright 1993 Miguel de Icaza |
| 5 | * Copyright 1996 Alexandre Julliard |
| 6 | */ |
| 7 | |
| 8 | #include <ctype.h> |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame] | 9 | #include <fcntl.h> |
Alexandre Julliard | 02ed4c2 | 1996-03-02 19:34:10 +0000 | [diff] [blame] | 10 | #include <stdlib.h> |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 11 | #include <string.h> |
Jeremy White | d3e22d9 | 2000-02-10 19:03:02 +0000 | [diff] [blame] | 12 | #include <stdio.h> |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 13 | #include <sys/stat.h> |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 14 | #include <sys/types.h> |
| 15 | #include <pwd.h> |
| 16 | #include <unistd.h> |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 17 | |
Alexandre Julliard | 24a62ab | 2000-11-28 22:40:56 +0000 | [diff] [blame] | 18 | #include "windef.h" |
Marcus Meissner | 317af32 | 1999-02-17 13:51:06 +0000 | [diff] [blame] | 19 | #include "winbase.h" |
Alexandre Julliard | 24a62ab | 2000-11-28 22:40:56 +0000 | [diff] [blame] | 20 | #include "winnls.h" |
Marcus Meissner | 9b4fcf7 | 1999-12-04 04:19:55 +0000 | [diff] [blame] | 21 | #include "winerror.h" |
Marcus Meissner | 317af32 | 1999-02-17 13:51:06 +0000 | [diff] [blame] | 22 | #include "wine/winbase16.h" |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 23 | #include "winreg.h" |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 24 | #include "file.h" |
Alexandre Julliard | 7ebe1a4 | 1996-12-22 18:27:48 +0000 | [diff] [blame] | 25 | #include "heap.h" |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 26 | #include "debugtools.h" |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 27 | #include "options.h" |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 28 | #include "server.h" |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 29 | |
Jeremy White | d3e22d9 | 2000-02-10 19:03:02 +0000 | [diff] [blame] | 30 | DEFAULT_DEBUG_CHANNEL(profile); |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 31 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 32 | typedef struct tagPROFILEKEY |
| 33 | { |
| 34 | char *name; |
| 35 | char *value; |
| 36 | struct tagPROFILEKEY *next; |
| 37 | } PROFILEKEY; |
| 38 | |
| 39 | typedef struct tagPROFILESECTION |
| 40 | { |
| 41 | char *name; |
| 42 | struct tagPROFILEKEY *key; |
| 43 | struct tagPROFILESECTION *next; |
| 44 | } PROFILESECTION; |
| 45 | |
| 46 | |
| 47 | typedef struct |
| 48 | { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 49 | BOOL changed; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 50 | PROFILESECTION *section; |
| 51 | char *dos_name; |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 52 | char *unix_name; |
| 53 | char *filename; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 54 | time_t mtime; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 55 | } PROFILE; |
| 56 | |
| 57 | |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 58 | #define N_CACHED_PROFILES 10 |
| 59 | |
| 60 | /* Cached profile files */ |
| 61 | static PROFILE *MRUProfile[N_CACHED_PROFILES]={NULL}; |
| 62 | |
| 63 | #define CurProfile (MRUProfile[0]) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 64 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 65 | /* wine.ini config file registry root */ |
| 66 | static HKEY wine_profile_key; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 67 | |
| 68 | #define PROFILE_MAX_LINE_LEN 1024 |
| 69 | |
| 70 | /* Wine profile name in $HOME directory; must begin with slash */ |
| 71 | static const char PROFILE_WineIniName[] = "/.winerc"; |
| 72 | |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 73 | /* Wine profile: the profile file being used */ |
| 74 | static char PROFILE_WineIniUsed[MAX_PATHNAME_LEN] = ""; |
| 75 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 76 | /* Check for comments in profile */ |
| 77 | #define IS_ENTRY_COMMENT(str) ((str)[0] == ';') |
| 78 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 79 | static const WCHAR wininiW[] = { 'w','i','n','.','i','n','i',0 }; |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 80 | |
Alexandre Julliard | 227a089 | 2000-04-08 21:06:06 +0000 | [diff] [blame] | 81 | static CRITICAL_SECTION PROFILE_CritSect = CRITICAL_SECTION_INIT; |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 82 | |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 83 | static const char hex[16] = "0123456789ABCDEF"; |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 84 | |
| 85 | /*********************************************************************** |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 86 | * PROFILE_CopyEntry |
| 87 | * |
| 88 | * Copy the content of an entry into a buffer, removing quotes, and possibly |
| 89 | * translating environment variables. |
| 90 | */ |
| 91 | static void PROFILE_CopyEntry( char *buffer, const char *value, int len, |
| 92 | int handle_env ) |
| 93 | { |
| 94 | char quote = '\0'; |
| 95 | const char *p; |
| 96 | |
Dmitry Timoshkov | fdc78a3 | 2000-12-19 19:37:03 +0000 | [diff] [blame] | 97 | if(!buffer) return; |
| 98 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 99 | if ((*value == '\'') || (*value == '\"')) |
| 100 | { |
| 101 | if (value[1] && (value[strlen(value)-1] == *value)) quote = *value++; |
| 102 | } |
| 103 | |
| 104 | if (!handle_env) |
| 105 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 106 | lstrcpynA( buffer, value, len ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 107 | if (quote && (len >= strlen(value))) buffer[strlen(buffer)-1] = '\0'; |
| 108 | return; |
| 109 | } |
| 110 | |
| 111 | for (p = value; (*p && (len > 1)); *buffer++ = *p++, len-- ) |
| 112 | { |
| 113 | if ((*p == '$') && (p[1] == '{')) |
| 114 | { |
| 115 | char env_val[1024]; |
| 116 | const char *env_p; |
| 117 | const char *p2 = strchr( p, '}' ); |
| 118 | if (!p2) continue; /* ignore it */ |
Francois Gouget | 6d77d3a | 2000-03-25 21:44:35 +0000 | [diff] [blame] | 119 | lstrcpynA(env_val, p + 2, min( sizeof(env_val), (int)(p2-p)-1 )); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 120 | if ((env_p = getenv( env_val )) != NULL) |
| 121 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 122 | lstrcpynA( buffer, env_p, len ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 123 | buffer += strlen( buffer ); |
| 124 | len -= strlen( buffer ); |
| 125 | } |
| 126 | p = p2 + 1; |
| 127 | } |
| 128 | } |
Eric Pouech | f54c95f | 1999-10-31 17:32:57 +0000 | [diff] [blame] | 129 | if (quote && (len > 1)) buffer--; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 130 | *buffer = '\0'; |
| 131 | } |
| 132 | |
| 133 | |
| 134 | /*********************************************************************** |
| 135 | * PROFILE_Save |
| 136 | * |
| 137 | * Save a profile tree to a file. |
| 138 | */ |
| 139 | static void PROFILE_Save( FILE *file, PROFILESECTION *section ) |
| 140 | { |
| 141 | PROFILEKEY *key; |
| 142 | |
| 143 | for ( ; section; section = section->next) |
| 144 | { |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 145 | if (section->name) fprintf( file, "\r\n[%s]\r\n", section->name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 146 | for (key = section->key; key; key = key->next) |
| 147 | { |
| 148 | fprintf( file, "%s", key->name ); |
| 149 | if (key->value) fprintf( file, "=%s", key->value ); |
Alexandre Julliard | 7d654eb | 1996-02-25 11:36:22 +0000 | [diff] [blame] | 150 | fprintf( file, "\r\n" ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | |
| 156 | /*********************************************************************** |
| 157 | * PROFILE_Free |
| 158 | * |
| 159 | * Free a profile tree. |
| 160 | */ |
| 161 | static void PROFILE_Free( PROFILESECTION *section ) |
| 162 | { |
| 163 | PROFILESECTION *next_section; |
| 164 | PROFILEKEY *key, *next_key; |
| 165 | |
| 166 | for ( ; section; section = next_section) |
| 167 | { |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 168 | if (section->name) HeapFree( GetProcessHeap(), 0, section->name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 169 | for (key = section->key; key; key = next_key) |
| 170 | { |
| 171 | next_key = key->next; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 172 | if (key->name) HeapFree( GetProcessHeap(), 0, key->name ); |
| 173 | if (key->value) HeapFree( GetProcessHeap(), 0, key->value ); |
| 174 | HeapFree( GetProcessHeap(), 0, key ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 175 | } |
| 176 | next_section = section->next; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 177 | HeapFree( GetProcessHeap(), 0, section ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 178 | } |
| 179 | } |
| 180 | |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 181 | static inline int PROFILE_isspace(char c) |
| 182 | { |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 183 | if (isspace(c)) return 1; |
| 184 | if (c=='\r' || c==0x1a) return 1; |
| 185 | /* CR and ^Z (DOS EOF) are spaces too (found on CD-ROMs) */ |
| 186 | return 0; |
| 187 | } |
| 188 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 189 | |
| 190 | /*********************************************************************** |
| 191 | * PROFILE_Load |
| 192 | * |
| 193 | * Load a profile tree from a file. |
| 194 | */ |
| 195 | static PROFILESECTION *PROFILE_Load( FILE *file ) |
| 196 | { |
| 197 | char buffer[PROFILE_MAX_LINE_LEN]; |
| 198 | char *p, *p2; |
| 199 | int line = 0; |
| 200 | PROFILESECTION *section, *first_section; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 201 | PROFILESECTION **next_section; |
| 202 | PROFILEKEY *key, *prev_key, **next_key; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 203 | |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 204 | first_section = HeapAlloc( GetProcessHeap(), 0, sizeof(*section) ); |
| 205 | if(first_section == NULL) return NULL; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 206 | first_section->name = NULL; |
| 207 | first_section->key = NULL; |
| 208 | first_section->next = NULL; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 209 | next_section = &first_section->next; |
| 210 | next_key = &first_section->key; |
| 211 | prev_key = NULL; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 212 | |
| 213 | while (fgets( buffer, PROFILE_MAX_LINE_LEN, file )) |
| 214 | { |
| 215 | line++; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 216 | p = buffer; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 217 | while (*p && PROFILE_isspace(*p)) p++; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 218 | if (*p == '[') /* section start */ |
| 219 | { |
| 220 | if (!(p2 = strrchr( p, ']' ))) |
| 221 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 222 | WARN("Invalid section header at line %d: '%s'\n", |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 223 | line, p ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 224 | } |
| 225 | else |
| 226 | { |
| 227 | *p2 = '\0'; |
| 228 | p++; |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 229 | section = HeapAlloc( GetProcessHeap(), 0, sizeof(*section) ); |
| 230 | if(section == NULL) break; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 231 | section->name = HEAP_strdupA( GetProcessHeap(), 0, p ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 232 | section->key = NULL; |
| 233 | section->next = NULL; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 234 | *next_section = section; |
| 235 | next_section = §ion->next; |
| 236 | next_key = §ion->key; |
| 237 | prev_key = NULL; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 238 | |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 239 | TRACE("New section: '%s'\n",section->name); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 240 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 241 | continue; |
| 242 | } |
| 243 | } |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 244 | |
| 245 | p2=p+strlen(p) - 1; |
| 246 | while ((p2 > p) && ((*p2 == '\n') || PROFILE_isspace(*p2))) *p2--='\0'; |
| 247 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 248 | if ((p2 = strchr( p, '=' )) != NULL) |
| 249 | { |
| 250 | char *p3 = p2 - 1; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 251 | while ((p3 > p) && PROFILE_isspace(*p3)) *p3-- = '\0'; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 252 | *p2++ = '\0'; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 253 | while (*p2 && PROFILE_isspace(*p2)) p2++; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 254 | } |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 255 | |
| 256 | if(*p || !prev_key || *prev_key->name) |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 257 | { |
| 258 | key = HeapAlloc( GetProcessHeap(), 0, sizeof(*key) ); |
| 259 | if(key == NULL) break; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 260 | key->name = HEAP_strdupA( GetProcessHeap(), 0, p ); |
| 261 | key->value = p2 ? HEAP_strdupA( GetProcessHeap(), 0, p2 ) : NULL; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 262 | key->next = NULL; |
| 263 | *next_key = key; |
| 264 | next_key = &key->next; |
| 265 | prev_key = key; |
| 266 | |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 267 | TRACE("New key: name='%s', value='%s'\n",key->name,key->value?key->value:"(none)"); |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 268 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 269 | } |
| 270 | return first_section; |
| 271 | } |
| 272 | |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame] | 273 | /* convert the .winerc file to the new format */ |
| 274 | static int convert_config( FILE *in, const char *output_name ) |
| 275 | { |
| 276 | char buffer[PROFILE_MAX_LINE_LEN]; |
| 277 | char *p, *p2; |
| 278 | FILE *out; |
| 279 | |
| 280 | /* create the output file, only if it doesn't exist already */ |
| 281 | int fd = open( output_name, O_WRONLY|O_CREAT|O_EXCL, 0666 ); |
| 282 | if (fd == -1) return 0; |
| 283 | |
| 284 | out = fdopen( fd, "w" ); |
| 285 | fprintf( out, "WINE REGISTRY Version 2\n" ); |
| 286 | fprintf( out, ";; All keys relative to \\\\Machine\\\\Software\\\\Wine\\\\Wine\\\\Config\n\n" ); |
| 287 | while (fgets( buffer, PROFILE_MAX_LINE_LEN, in )) |
| 288 | { |
| 289 | if (buffer[strlen(buffer)-1] == '\n') buffer[strlen(buffer)-1] = 0; |
| 290 | p = buffer; |
| 291 | while (*p && PROFILE_isspace(*p)) p++; |
| 292 | if (*p == '[') /* section start */ |
| 293 | { |
| 294 | if ((p2 = strrchr( p, ']' ))) |
| 295 | { |
| 296 | *p2 = '\0'; |
| 297 | p++; |
| 298 | fprintf( out, "[%s]\n", p ); |
| 299 | } |
| 300 | continue; |
| 301 | } |
| 302 | |
| 303 | if (*p == ';' || *p == '#') |
| 304 | { |
| 305 | fprintf( out, "%s\n", p ); |
| 306 | continue; |
| 307 | } |
| 308 | |
| 309 | p2=p+strlen(p) - 1; |
| 310 | while ((p2 > p) && ((*p2 == '\n') || PROFILE_isspace(*p2))) *p2--='\0'; |
| 311 | |
| 312 | if ((p2 = strchr( p, '=' )) != NULL) |
| 313 | { |
| 314 | char *p3 = p2 - 1; |
| 315 | while ((p3 > p) && PROFILE_isspace(*p3)) *p3-- = '\0'; |
| 316 | *p2++ = '\0'; |
| 317 | while (*p2 && PROFILE_isspace(*p2)) p2++; |
| 318 | } |
| 319 | |
| 320 | if (!*p) |
| 321 | { |
| 322 | fprintf( out, "\n" ); |
| 323 | continue; |
| 324 | } |
| 325 | fputc( '"', out ); |
| 326 | while (*p) |
| 327 | { |
| 328 | if (*p == '\\') fputc( '\\', out ); |
| 329 | fputc( *p, out ); |
| 330 | p++; |
| 331 | } |
| 332 | fprintf( out, "\" = \"" ); |
Alexandre Julliard | 550ba5b | 2001-01-05 22:23:37 +0000 | [diff] [blame] | 333 | if (p2) |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame] | 334 | { |
Alexandre Julliard | 550ba5b | 2001-01-05 22:23:37 +0000 | [diff] [blame] | 335 | while (*p2) |
| 336 | { |
| 337 | if (*p2 == '\\') fputc( '\\', out ); |
| 338 | fputc( *p2, out ); |
| 339 | p2++; |
| 340 | } |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame] | 341 | } |
| 342 | fprintf( out, "\"\n" ); |
| 343 | } |
| 344 | fclose( out ); |
| 345 | return 1; |
| 346 | } |
| 347 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 348 | |
| 349 | /*********************************************************************** |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 350 | * PROFILE_RegistryLoad |
| 351 | * |
| 352 | * Load a profile tree from a file into a registry key. |
| 353 | */ |
| 354 | static DWORD PROFILE_RegistryLoad( HKEY root, FILE *file ) |
| 355 | { |
| 356 | HKEY hkey = 0; |
| 357 | DWORD err = 0; |
| 358 | char buffer[PROFILE_MAX_LINE_LEN]; |
| 359 | char *p, *p2; |
| 360 | int line = 0; |
| 361 | |
| 362 | while (fgets( buffer, PROFILE_MAX_LINE_LEN, file )) |
| 363 | { |
| 364 | line++; |
| 365 | p = buffer; |
| 366 | while (*p && PROFILE_isspace(*p)) p++; |
| 367 | if (*p == '[') /* section start */ |
| 368 | { |
| 369 | if (!(p2 = strrchr( p, ']' ))) |
| 370 | { |
| 371 | WARN("Invalid section header at line %d: '%s'\n", |
| 372 | line, p ); |
| 373 | } |
| 374 | else |
| 375 | { |
| 376 | *p2 = '\0'; |
| 377 | p++; |
| 378 | if (hkey) RegCloseKey( hkey ); |
| 379 | if ((err = RegCreateKeyExA( root, p, 0, NULL, REG_OPTION_VOLATILE, |
| 380 | KEY_ALL_ACCESS, NULL, &hkey, NULL ))) return err; |
| 381 | TRACE("New section: '%s'\n",p); |
| 382 | continue; |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | p2=p+strlen(p) - 1; |
| 387 | while ((p2 > p) && ((*p2 == '\n') || PROFILE_isspace(*p2))) *p2--='\0'; |
| 388 | |
| 389 | if ((p2 = strchr( p, '=' )) != NULL) |
| 390 | { |
| 391 | char *p3 = p2 - 1; |
| 392 | while ((p3 > p) && PROFILE_isspace(*p3)) *p3-- = '\0'; |
| 393 | *p2++ = '\0'; |
| 394 | while (*p2 && PROFILE_isspace(*p2)) p2++; |
| 395 | } |
| 396 | |
| 397 | if (*p && hkey && !IS_ENTRY_COMMENT(p)) |
| 398 | { |
| 399 | if (!p2) p2 = ""; |
| 400 | if ((err = RegSetValueExA( hkey, p, 0, REG_SZ, p2, strlen(p2)+1 ))) |
| 401 | { |
| 402 | RegCloseKey( hkey ); |
| 403 | return err; |
| 404 | } |
| 405 | TRACE("New key: name='%s', value='%s'\n",p,p2); |
| 406 | } |
| 407 | } |
| 408 | if (hkey) RegCloseKey( hkey ); |
| 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | |
| 413 | /*********************************************************************** |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 414 | * PROFILE_DeleteSection |
| 415 | * |
| 416 | * Delete a section from a profile tree. |
| 417 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 418 | static BOOL PROFILE_DeleteSection( PROFILESECTION **section, LPCSTR name ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 419 | { |
| 420 | while (*section) |
| 421 | { |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 422 | if ((*section)->name && !strcasecmp( (*section)->name, name )) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 423 | { |
| 424 | PROFILESECTION *to_del = *section; |
| 425 | *section = to_del->next; |
| 426 | to_del->next = NULL; |
| 427 | PROFILE_Free( to_del ); |
| 428 | return TRUE; |
| 429 | } |
| 430 | section = &(*section)->next; |
| 431 | } |
| 432 | return FALSE; |
| 433 | } |
| 434 | |
| 435 | |
| 436 | /*********************************************************************** |
| 437 | * PROFILE_DeleteKey |
| 438 | * |
| 439 | * Delete a key from a profile tree. |
| 440 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 441 | static BOOL PROFILE_DeleteKey( PROFILESECTION **section, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 442 | LPCSTR section_name, LPCSTR key_name ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 443 | { |
| 444 | while (*section) |
| 445 | { |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 446 | if ((*section)->name && !strcasecmp( (*section)->name, section_name )) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 447 | { |
| 448 | PROFILEKEY **key = &(*section)->key; |
| 449 | while (*key) |
| 450 | { |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 451 | if (!strcasecmp( (*key)->name, key_name )) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 452 | { |
| 453 | PROFILEKEY *to_del = *key; |
| 454 | *key = to_del->next; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 455 | if (to_del->name) HeapFree( GetProcessHeap(), 0, to_del->name ); |
| 456 | if (to_del->value) HeapFree( GetProcessHeap(), 0, to_del->value); |
| 457 | HeapFree( GetProcessHeap(), 0, to_del ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 458 | return TRUE; |
| 459 | } |
| 460 | key = &(*key)->next; |
| 461 | } |
| 462 | } |
| 463 | section = &(*section)->next; |
| 464 | } |
| 465 | return FALSE; |
| 466 | } |
| 467 | |
| 468 | |
| 469 | /*********************************************************************** |
Uwe Bonnes | d88fbb7 | 2000-06-20 20:48:46 +0000 | [diff] [blame] | 470 | * PROFILE_DeleteAllKeys |
| 471 | * |
| 472 | * Delete all keys from a profile tree. |
| 473 | */ |
| 474 | void PROFILE_DeleteAllKeys( LPCSTR section_name) |
| 475 | { |
| 476 | PROFILESECTION **section= &CurProfile->section; |
| 477 | while (*section) |
| 478 | { |
| 479 | if ((*section)->name && !strcasecmp( (*section)->name, section_name )) |
| 480 | { |
| 481 | PROFILEKEY **key = &(*section)->key; |
| 482 | while (*key) |
| 483 | { |
| 484 | PROFILEKEY *to_del = *key; |
| 485 | *key = to_del->next; |
| 486 | if (to_del->name) HeapFree( GetProcessHeap(), 0, to_del->name ); |
| 487 | if (to_del->value) HeapFree( GetProcessHeap(), 0, to_del->value); |
| 488 | HeapFree( GetProcessHeap(), 0, to_del ); |
| 489 | CurProfile->changed =TRUE; |
| 490 | } |
| 491 | } |
| 492 | section = &(*section)->next; |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | |
| 497 | /*********************************************************************** |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 498 | * PROFILE_Find |
| 499 | * |
| 500 | * Find a key in a profile tree, optionally creating it. |
| 501 | */ |
| 502 | static PROFILEKEY *PROFILE_Find( PROFILESECTION **section, |
| 503 | const char *section_name, |
| 504 | const char *key_name, int create ) |
| 505 | { |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 506 | const char *p; |
| 507 | int seclen, keylen; |
| 508 | |
| 509 | while (PROFILE_isspace(*section_name)) section_name++; |
| 510 | p = section_name + strlen(section_name) - 1; |
| 511 | while ((p > section_name) && PROFILE_isspace(*p)) p--; |
| 512 | seclen = p - section_name + 1; |
| 513 | |
| 514 | while (PROFILE_isspace(*key_name)) key_name++; |
| 515 | p = key_name + strlen(key_name) - 1; |
| 516 | while ((p > key_name) && PROFILE_isspace(*p)) p--; |
| 517 | keylen = p - key_name + 1; |
| 518 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 519 | while (*section) |
| 520 | { |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 521 | if ( ((*section)->name) |
| 522 | && (!(strncasecmp( (*section)->name, section_name, seclen ))) |
| 523 | && (((*section)->name)[seclen] == '\0') ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 524 | { |
| 525 | PROFILEKEY **key = &(*section)->key; |
| 526 | while (*key) |
| 527 | { |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 528 | if ( (!(strncasecmp( (*key)->name, key_name, keylen ))) |
| 529 | && (((*key)->name)[keylen] == '\0') ) |
| 530 | return *key; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 531 | key = &(*key)->next; |
| 532 | } |
| 533 | if (!create) return NULL; |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 534 | *key = HeapAlloc( GetProcessHeap(), 0, sizeof(PROFILEKEY) ); |
| 535 | if(*key == NULL) return NULL; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 536 | (*key)->name = HEAP_strdupA( GetProcessHeap(), 0, key_name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 537 | (*key)->value = NULL; |
| 538 | (*key)->next = NULL; |
| 539 | return *key; |
| 540 | } |
| 541 | section = &(*section)->next; |
| 542 | } |
| 543 | if (!create) return NULL; |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 544 | *section = HeapAlloc( GetProcessHeap(), 0, sizeof(PROFILESECTION) ); |
| 545 | if(*section == NULL) return NULL; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 546 | (*section)->name = HEAP_strdupA( GetProcessHeap(), 0, section_name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 547 | (*section)->next = NULL; |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 548 | (*section)->key = HeapAlloc( GetProcessHeap(), 0, sizeof(PROFILEKEY) ); |
| 549 | if((*section)->key == NULL) |
| 550 | { |
| 551 | HeapFree(GetProcessHeap(), 0, *section); |
| 552 | return NULL; |
| 553 | } |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 554 | (*section)->key->name = HEAP_strdupA( GetProcessHeap(), 0, key_name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 555 | (*section)->key->value = NULL; |
| 556 | (*section)->key->next = NULL; |
| 557 | return (*section)->key; |
| 558 | } |
| 559 | |
| 560 | |
| 561 | /*********************************************************************** |
| 562 | * PROFILE_FlushFile |
| 563 | * |
| 564 | * Flush the current profile to disk if changed. |
| 565 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 566 | static BOOL PROFILE_FlushFile(void) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 567 | { |
| 568 | char *p, buffer[MAX_PATHNAME_LEN]; |
| 569 | const char *unix_name; |
| 570 | FILE *file = NULL; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 571 | struct stat buf; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 572 | |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 573 | if(!CurProfile) |
| 574 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 575 | WARN("No current profile!\n"); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 576 | return FALSE; |
| 577 | } |
| 578 | |
| 579 | if (!CurProfile->changed || !CurProfile->dos_name) return TRUE; |
| 580 | if (!(unix_name = CurProfile->unix_name) || !(file = fopen(unix_name, "w"))) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 581 | { |
| 582 | /* Try to create it in $HOME/.wine */ |
| 583 | /* FIXME: this will need a more general solution */ |
Alexandre Julliard | de1d5ad | 2000-04-06 20:36:17 +0000 | [diff] [blame] | 584 | strcpy( buffer, get_config_dir() ); |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 585 | p = buffer + strlen(buffer); |
| 586 | *p++ = '/'; |
| 587 | strcpy( p, strrchr( CurProfile->dos_name, '\\' ) + 1 ); |
Alexandre Julliard | dcd247e | 2000-08-14 17:39:15 +0000 | [diff] [blame] | 588 | _strlwr( p ); |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 589 | file = fopen( buffer, "w" ); |
| 590 | unix_name = buffer; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | if (!file) |
| 594 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 595 | WARN("could not save profile file %s\n", CurProfile->dos_name); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 596 | return FALSE; |
| 597 | } |
| 598 | |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 599 | TRACE("Saving '%s' into '%s'\n", CurProfile->dos_name, unix_name ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 600 | PROFILE_Save( file, CurProfile->section ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 601 | fclose( file ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 602 | CurProfile->changed = FALSE; |
| 603 | if(!stat(unix_name,&buf)) |
| 604 | CurProfile->mtime=buf.st_mtime; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 605 | return TRUE; |
| 606 | } |
| 607 | |
| 608 | |
| 609 | /*********************************************************************** |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 610 | * PROFILE_ReleaseFile |
| 611 | * |
| 612 | * Flush the current profile to disk and remove it from the cache. |
| 613 | */ |
| 614 | static void PROFILE_ReleaseFile(void) |
| 615 | { |
| 616 | PROFILE_FlushFile(); |
| 617 | PROFILE_Free( CurProfile->section ); |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 618 | if (CurProfile->dos_name) HeapFree( GetProcessHeap(), 0, CurProfile->dos_name ); |
| 619 | if (CurProfile->unix_name) HeapFree( GetProcessHeap(), 0, CurProfile->unix_name ); |
| 620 | if (CurProfile->filename) HeapFree( GetProcessHeap(), 0, CurProfile->filename ); |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 621 | CurProfile->changed = FALSE; |
| 622 | CurProfile->section = NULL; |
| 623 | CurProfile->dos_name = NULL; |
| 624 | CurProfile->unix_name = NULL; |
| 625 | CurProfile->filename = NULL; |
| 626 | CurProfile->mtime = 0; |
| 627 | } |
| 628 | |
| 629 | |
| 630 | /*********************************************************************** |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 631 | * PROFILE_Open |
| 632 | * |
| 633 | * Open a profile file, checking the cached file first. |
| 634 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 635 | static BOOL PROFILE_Open( LPCSTR filename ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 636 | { |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 637 | DOS_FULL_NAME full_name; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 638 | char buffer[MAX_PATHNAME_LEN]; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 639 | char *newdos_name, *p; |
| 640 | FILE *file = NULL; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 641 | int i,j; |
| 642 | struct stat buf; |
| 643 | PROFILE *tempProfile; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 644 | |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 645 | /* First time around */ |
| 646 | |
| 647 | if(!CurProfile) |
| 648 | for(i=0;i<N_CACHED_PROFILES;i++) |
| 649 | { |
Dimitrie O. Paun | abdbced | 2000-04-29 14:20:28 +0000 | [diff] [blame] | 650 | MRUProfile[i]=HeapAlloc( GetProcessHeap(), 0, sizeof(PROFILE) ); |
| 651 | if(MRUProfile[i] == NULL) break; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 652 | MRUProfile[i]->changed=FALSE; |
| 653 | MRUProfile[i]->section=NULL; |
| 654 | MRUProfile[i]->dos_name=NULL; |
| 655 | MRUProfile[i]->unix_name=NULL; |
| 656 | MRUProfile[i]->filename=NULL; |
| 657 | MRUProfile[i]->mtime=0; |
| 658 | } |
| 659 | |
| 660 | /* Check for a match */ |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 661 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 662 | if (strchr( filename, '/' ) || strchr( filename, '\\' ) || |
| 663 | strchr( filename, ':' )) |
| 664 | { |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 665 | if (!DOSFS_GetFullName( filename, FALSE, &full_name )) return FALSE; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 666 | } |
| 667 | else |
| 668 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 669 | GetWindowsDirectoryA( buffer, sizeof(buffer) ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 670 | strcat( buffer, "\\" ); |
| 671 | strcat( buffer, filename ); |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 672 | if (!DOSFS_GetFullName( buffer, FALSE, &full_name )) return FALSE; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 673 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 674 | |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 675 | for(i=0;i<N_CACHED_PROFILES;i++) |
| 676 | { |
| 677 | if ((MRUProfile[i]->filename && !strcmp( filename, MRUProfile[i]->filename )) || |
| 678 | (MRUProfile[i]->dos_name && !strcmp( full_name.short_name, MRUProfile[i]->dos_name ))) |
| 679 | { |
| 680 | if(i) |
| 681 | { |
| 682 | PROFILE_FlushFile(); |
| 683 | tempProfile=MRUProfile[i]; |
| 684 | for(j=i;j>0;j--) |
| 685 | MRUProfile[j]=MRUProfile[j-1]; |
| 686 | CurProfile=tempProfile; |
| 687 | } |
| 688 | if(!stat(CurProfile->unix_name,&buf) && CurProfile->mtime==buf.st_mtime) |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 689 | TRACE("(%s): already opened (mru=%d)\n", |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 690 | filename, i ); |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 691 | else |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 692 | TRACE("(%s): already opened, needs refreshing (mru=%d)\n", |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 693 | filename, i ); |
| 694 | return TRUE; |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 695 | } |
| 696 | } |
| 697 | |
Andreas Mohr | 87bff28 | 1999-11-21 02:03:03 +0000 | [diff] [blame] | 698 | /* Flush the old current profile */ |
| 699 | PROFILE_FlushFile(); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 700 | |
Andreas Mohr | 87bff28 | 1999-11-21 02:03:03 +0000 | [diff] [blame] | 701 | /* Make the oldest profile the current one only in order to get rid of it */ |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 702 | if(i==N_CACHED_PROFILES) |
| 703 | { |
| 704 | tempProfile=MRUProfile[N_CACHED_PROFILES-1]; |
| 705 | for(i=N_CACHED_PROFILES-1;i>0;i--) |
| 706 | MRUProfile[i]=MRUProfile[i-1]; |
| 707 | CurProfile=tempProfile; |
| 708 | } |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 709 | if(CurProfile->filename) PROFILE_ReleaseFile(); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 710 | |
Andreas Mohr | 87bff28 | 1999-11-21 02:03:03 +0000 | [diff] [blame] | 711 | /* OK, now that CurProfile is definitely free we assign it our new file */ |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 712 | newdos_name = HEAP_strdupA( GetProcessHeap(), 0, full_name.short_name ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 713 | CurProfile->dos_name = newdos_name; |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 714 | CurProfile->filename = HEAP_strdupA( GetProcessHeap(), 0, filename ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 715 | |
| 716 | /* Try to open the profile file, first in $HOME/.wine */ |
| 717 | |
| 718 | /* FIXME: this will need a more general solution */ |
Alexandre Julliard | de1d5ad | 2000-04-06 20:36:17 +0000 | [diff] [blame] | 719 | strcpy( buffer, get_config_dir() ); |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 720 | p = buffer + strlen(buffer); |
| 721 | *p++ = '/'; |
| 722 | strcpy( p, strrchr( newdos_name, '\\' ) + 1 ); |
Alexandre Julliard | dcd247e | 2000-08-14 17:39:15 +0000 | [diff] [blame] | 723 | _strlwr( p ); |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 724 | if ((file = fopen( buffer, "r" ))) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 725 | { |
Alexandre Julliard | 647876e | 2000-01-25 01:35:01 +0000 | [diff] [blame] | 726 | TRACE("(%s): found it in %s\n", |
| 727 | filename, buffer ); |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 728 | CurProfile->unix_name = HEAP_strdupA( GetProcessHeap(), 0, buffer ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 729 | } |
| 730 | |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 731 | if (!file) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 732 | { |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 733 | CurProfile->unix_name = HEAP_strdupA( GetProcessHeap(), 0, |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 734 | full_name.long_name ); |
| 735 | if ((file = fopen( full_name.long_name, "r" ))) |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 736 | TRACE("(%s): found it in %s\n", |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 737 | filename, full_name.long_name ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | if (file) |
| 741 | { |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 742 | CurProfile->section = PROFILE_Load( file ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 743 | fclose( file ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 744 | if(!stat(CurProfile->unix_name,&buf)) |
| 745 | CurProfile->mtime=buf.st_mtime; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 746 | } |
| 747 | else |
Alexandre Julliard | d1ce8b2 | 1996-09-02 16:46:30 +0000 | [diff] [blame] | 748 | { |
| 749 | /* Does not exist yet, we will create it in PROFILE_FlushFile */ |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 750 | WARN("profile file %s not found\n", newdos_name ); |
Alexandre Julliard | d1ce8b2 | 1996-09-02 16:46:30 +0000 | [diff] [blame] | 751 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 752 | return TRUE; |
| 753 | } |
| 754 | |
| 755 | |
| 756 | /*********************************************************************** |
| 757 | * PROFILE_GetSection |
| 758 | * |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 759 | * Returns all keys of a section. |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 760 | * If return_values is TRUE, also include the corresponding values. |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 761 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 762 | static INT PROFILE_GetSection( PROFILESECTION *section, LPCSTR section_name, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 763 | LPSTR buffer, UINT len, BOOL handle_env, |
| 764 | BOOL return_values ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 765 | { |
| 766 | PROFILEKEY *key; |
Dmitry Timoshkov | fdc78a3 | 2000-12-19 19:37:03 +0000 | [diff] [blame] | 767 | |
| 768 | if(!buffer) return 0; |
| 769 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 770 | while (section) |
| 771 | { |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 772 | if (section->name && !strcasecmp( section->name, section_name )) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 773 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 774 | UINT oldlen = len; |
Alexandre Julliard | 9416aba | 1999-01-26 17:29:49 +0000 | [diff] [blame] | 775 | for (key = section->key; key; key = key->next) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 776 | { |
| 777 | if (len <= 2) break; |
Alexandre Julliard | 9416aba | 1999-01-26 17:29:49 +0000 | [diff] [blame] | 778 | if (!*key->name) continue; /* Skip empty lines */ |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 779 | if (IS_ENTRY_COMMENT(key->name)) continue; /* Skip comments */ |
| 780 | PROFILE_CopyEntry( buffer, key->name, len - 1, handle_env ); |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame] | 781 | len -= strlen(buffer) + 1; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 782 | buffer += strlen(buffer) + 1; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 783 | if (return_values && key->value) { |
| 784 | buffer[-1] = '='; |
| 785 | PROFILE_CopyEntry ( buffer, |
| 786 | key->value, len - 1, handle_env ); |
| 787 | len -= strlen(buffer) + 1; |
| 788 | buffer += strlen(buffer) + 1; |
| 789 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 790 | } |
| 791 | *buffer = '\0'; |
Marcus Meissner | acfae0c | 1999-05-08 18:29:10 +0000 | [diff] [blame] | 792 | if (len <= 1) |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 793 | /*If either lpszSection or lpszKey is NULL and the supplied |
| 794 | destination buffer is too small to hold all the strings, |
| 795 | the last string is truncated and followed by two null characters. |
| 796 | In this case, the return value is equal to cchReturnBuffer |
| 797 | minus two. */ |
| 798 | { |
| 799 | buffer[-1] = '\0'; |
| 800 | return oldlen - 2; |
| 801 | } |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 802 | return oldlen - len; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 803 | } |
| 804 | section = section->next; |
| 805 | } |
| 806 | buffer[0] = buffer[1] = '\0'; |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 807 | return 0; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | |
Andreas Mohr | adfeec9 | 1999-05-22 16:04:57 +0000 | [diff] [blame] | 811 | static INT PROFILE_GetSectionNames( LPSTR buffer, UINT len ) |
| 812 | { |
| 813 | LPSTR buf = buffer; |
| 814 | WORD l, cursize = 0; |
| 815 | PROFILESECTION *section; |
| 816 | |
Dmitry Timoshkov | fdc78a3 | 2000-12-19 19:37:03 +0000 | [diff] [blame] | 817 | if(!buffer) return 0; |
| 818 | |
Andreas Mohr | adfeec9 | 1999-05-22 16:04:57 +0000 | [diff] [blame] | 819 | for (section = CurProfile->section; section; section = section->next) |
| 820 | if (section->name) { |
| 821 | l = strlen(section->name); |
| 822 | cursize += l+1; |
| 823 | if (cursize > len+1) |
| 824 | return len-2; |
| 825 | |
| 826 | strcpy(buf, section->name); |
| 827 | buf += l+1; |
| 828 | } |
| 829 | |
| 830 | *buf=0; |
| 831 | buf++; |
| 832 | return buf-buffer; |
| 833 | } |
| 834 | |
| 835 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 836 | /*********************************************************************** |
| 837 | * PROFILE_GetString |
| 838 | * |
| 839 | * Get a profile string. |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 840 | * |
| 841 | * Tests with GetPrivateProfileString16, W95a, |
| 842 | * with filled buffer ("****...") and section "set1" and key_name "1" valid: |
| 843 | * section key_name def_val res buffer |
| 844 | * "set1" "1" "x" 43 [data] |
| 845 | * "set1" "1 " "x" 43 [data] (!) |
| 846 | * "set1" " 1 "' "x" 43 [data] (!) |
| 847 | * "set1" "" "x" 1 "x" |
| 848 | * "set1" "" "x " 1 "x" (!) |
| 849 | * "set1" "" " x " 3 " x" (!) |
| 850 | * "set1" NULL "x" 6 "1\02\03\0\0" |
| 851 | * "set1" "" "x" 1 "x" |
| 852 | * NULL "1" "x" 0 "" (!) |
| 853 | * "" "1" "x" 1 "x" |
| 854 | * NULL NULL "" 0 "" |
| 855 | * |
| 856 | * |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 857 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 858 | static INT PROFILE_GetString( LPCSTR section, LPCSTR key_name, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 859 | LPCSTR def_val, LPSTR buffer, UINT len ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 860 | { |
| 861 | PROFILEKEY *key = NULL; |
| 862 | |
Dmitry Timoshkov | fdc78a3 | 2000-12-19 19:37:03 +0000 | [diff] [blame] | 863 | if(!buffer) return 0; |
| 864 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 865 | if (!def_val) def_val = ""; |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 866 | if (key_name && key_name[0]) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 867 | { |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 868 | key = PROFILE_Find( &CurProfile->section, section, key_name, FALSE ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 869 | PROFILE_CopyEntry( buffer, (key && key->value) ? key->value : def_val, |
| 870 | len, FALSE ); |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 871 | TRACE("('%s','%s','%s'): returning '%s'\n", |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 872 | section, key_name, def_val, buffer ); |
| 873 | return strlen( buffer ); |
| 874 | } |
Uwe Bonnes | b2ccbb2 | 2000-03-04 19:03:15 +0000 | [diff] [blame] | 875 | if (key_name && !(key_name[0])) |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 876 | /* Win95 returns 0 on keyname "". Tested with Likse32 bon 000227 */ |
Uwe Bonnes | b2ccbb2 | 2000-03-04 19:03:15 +0000 | [diff] [blame] | 877 | return 0; |
Andreas Mohr | adfeec9 | 1999-05-22 16:04:57 +0000 | [diff] [blame] | 878 | if (section && section[0]) |
| 879 | return PROFILE_GetSection(CurProfile->section, section, buffer, len, |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 880 | FALSE, FALSE); |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 881 | buffer[0] = '\0'; |
| 882 | return 0; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | |
| 886 | /*********************************************************************** |
| 887 | * PROFILE_SetString |
| 888 | * |
| 889 | * Set a profile string. |
| 890 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 891 | static BOOL PROFILE_SetString( LPCSTR section_name, LPCSTR key_name, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 892 | LPCSTR value ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 893 | { |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 894 | if (!key_name) /* Delete a whole section */ |
| 895 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 896 | TRACE("('%s')\n", section_name); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 897 | CurProfile->changed |= PROFILE_DeleteSection( &CurProfile->section, |
| 898 | section_name ); |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 899 | return TRUE; /* Even if PROFILE_DeleteSection() has failed, |
| 900 | this is not an error on application's level.*/ |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 901 | } |
| 902 | else if (!value) /* Delete a key */ |
| 903 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 904 | TRACE("('%s','%s')\n", |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 905 | section_name, key_name ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 906 | CurProfile->changed |= PROFILE_DeleteKey( &CurProfile->section, |
| 907 | section_name, key_name ); |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 908 | return TRUE; /* same error handling as above */ |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 909 | } |
| 910 | else /* Set the key value */ |
| 911 | { |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 912 | PROFILEKEY *key = PROFILE_Find( &CurProfile->section, section_name, |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 913 | key_name, TRUE ); |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 914 | TRACE("('%s','%s','%s'): \n", |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 915 | section_name, key_name, value ); |
Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 916 | if (!key) return FALSE; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 917 | if (key->value) |
| 918 | { |
Marcus Meissner | a6ae555 | 2000-06-13 01:06:22 +0000 | [diff] [blame] | 919 | /* strip the leading spaces. We can safely strip \n\r and |
| 920 | * friends too, they should not happen here anyway. */ |
| 921 | while (PROFILE_isspace(*value)) value++; |
| 922 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 923 | if (!strcmp( key->value, value )) |
| 924 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 925 | TRACE(" no change needed\n" ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 926 | return TRUE; /* No change needed */ |
| 927 | } |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 928 | TRACE(" replacing '%s'\n", key->value ); |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 929 | HeapFree( GetProcessHeap(), 0, key->value ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 930 | } |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 931 | else TRACE(" creating key\n" ); |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 932 | key->value = HEAP_strdupA( GetProcessHeap(), 0, value ); |
Alexandre Julliard | 829fe32 | 1998-07-26 14:27:39 +0000 | [diff] [blame] | 933 | CurProfile->changed = TRUE; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 934 | } |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 935 | return TRUE; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 936 | } |
| 937 | |
| 938 | |
| 939 | /*********************************************************************** |
| 940 | * PROFILE_GetWineIniString |
| 941 | * |
| 942 | * Get a config string from the wine.ini file. |
| 943 | */ |
| 944 | int PROFILE_GetWineIniString( const char *section, const char *key_name, |
| 945 | const char *def, char *buffer, int len ) |
| 946 | { |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 947 | char tmp[PROFILE_MAX_LINE_LEN]; |
| 948 | HKEY hkey; |
| 949 | DWORD err; |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 950 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 951 | if (!(err = RegOpenKeyA( wine_profile_key, section, &hkey ))) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 952 | { |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 953 | DWORD type; |
| 954 | DWORD count = sizeof(tmp); |
| 955 | err = RegQueryValueExA( hkey, key_name, 0, &type, tmp, &count ); |
| 956 | RegCloseKey( hkey ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 957 | } |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 958 | PROFILE_CopyEntry( buffer, err ? def : tmp, len, TRUE ); |
| 959 | TRACE( "('%s','%s','%s'): returning '%s'\n", section, key_name, def, buffer ); |
| 960 | return strlen(buffer); |
| 961 | } |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 962 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 963 | |
| 964 | /*********************************************************************** |
| 965 | * PROFILE_EnumWineIniString |
| 966 | * |
| 967 | * Get a config string from the wine.ini file. |
| 968 | */ |
| 969 | BOOL PROFILE_EnumWineIniString( const char *section, int index, |
| 970 | char *name, int name_len, char *buffer, int len ) |
| 971 | { |
| 972 | char tmp[PROFILE_MAX_LINE_LEN]; |
| 973 | HKEY hkey; |
| 974 | DWORD err, type; |
| 975 | DWORD count = sizeof(tmp); |
| 976 | |
| 977 | if (RegOpenKeyA( wine_profile_key, section, &hkey )) return FALSE; |
| 978 | err = RegEnumValueA( hkey, index, name, (DWORD*)&name_len, NULL, &type, tmp, &count ); |
| 979 | RegCloseKey( hkey ); |
| 980 | if (!err) |
| 981 | { |
| 982 | PROFILE_CopyEntry( buffer, tmp, len, TRUE ); |
| 983 | TRACE( "('%s',%d): returning '%s'='%s'\n", section, index, name, buffer ); |
| 984 | } |
| 985 | return !err; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | |
| 989 | /*********************************************************************** |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 990 | * PROFILE_GetWineIniInt |
| 991 | * |
| 992 | * Get a config integer from the wine.ini file. |
| 993 | */ |
| 994 | int PROFILE_GetWineIniInt( const char *section, const char *key_name, int def ) |
| 995 | { |
| 996 | char buffer[20]; |
| 997 | char *p; |
| 998 | long result; |
| 999 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1000 | PROFILE_GetWineIniString( section, key_name, "", buffer, sizeof(buffer) ); |
| 1001 | if (!buffer[0]) return def; |
| 1002 | result = strtol( buffer, &p, 0 ); |
| 1003 | return (p == buffer) ? 0 /* No digits at all */ : (int)result; |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | |
| 1007 | /****************************************************************************** |
| 1008 | * |
| 1009 | * int PROFILE_GetWineIniBool( |
| 1010 | * char const *section, |
| 1011 | * char const *key_name, |
| 1012 | * int def ) |
| 1013 | * |
| 1014 | * Reads a boolean value from the wine.ini file. This function attempts to |
| 1015 | * be user-friendly by accepting 'n', 'N' (no), 'f', 'F' (false), or '0' |
| 1016 | * (zero) for false, 'y', 'Y' (yes), 't', 'T' (true), or '1' (one) for |
| 1017 | * true. Anything else results in the return of the default value. |
| 1018 | * |
| 1019 | * This function uses 1 to indicate true, and 0 for false. You can check |
| 1020 | * for existence by setting def to something other than 0 or 1 and |
| 1021 | * examining the return value. |
| 1022 | */ |
| 1023 | int PROFILE_GetWineIniBool( |
| 1024 | char const *section, |
| 1025 | char const *key_name, |
| 1026 | int def ) |
| 1027 | { |
| 1028 | char key_value[2]; |
| 1029 | int retval; |
| 1030 | |
| 1031 | PROFILE_GetWineIniString(section, key_name, "~", key_value, 2); |
| 1032 | |
| 1033 | switch(key_value[0]) { |
| 1034 | case 'n': |
| 1035 | case 'N': |
| 1036 | case 'f': |
| 1037 | case 'F': |
| 1038 | case '0': |
| 1039 | retval = 0; |
| 1040 | break; |
| 1041 | |
| 1042 | case 'y': |
| 1043 | case 'Y': |
| 1044 | case 't': |
| 1045 | case 'T': |
| 1046 | case '1': |
| 1047 | retval = 1; |
| 1048 | break; |
| 1049 | |
| 1050 | default: |
| 1051 | retval = def; |
| 1052 | } |
| 1053 | |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 1054 | TRACE("(\"%s\", \"%s\", %s), " |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 1055 | "[%c], ret %s.\n", section, key_name, |
| 1056 | def ? "TRUE" : "FALSE", key_value[0], |
| 1057 | retval ? "TRUE" : "FALSE"); |
| 1058 | |
| 1059 | return retval; |
| 1060 | } |
| 1061 | |
| 1062 | |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 1063 | /*********************************************************************** |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1064 | * PROFILE_LoadWineIni |
| 1065 | * |
Chris Morgan | 4a3d508 | 2001-01-10 22:57:34 +0000 | [diff] [blame] | 1066 | * Load the old .winerc file. |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1067 | */ |
| 1068 | int PROFILE_LoadWineIni(void) |
| 1069 | { |
| 1070 | char buffer[MAX_PATHNAME_LEN]; |
| 1071 | const char *p; |
| 1072 | FILE *f; |
Eric Pouech | 0521a54 | 2000-02-20 13:39:42 +0000 | [diff] [blame] | 1073 | HKEY hKeySW; |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 1074 | DWORD disp; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1075 | |
Alexandre Julliard | 86ff8c0 | 2000-04-13 16:10:20 +0000 | [diff] [blame] | 1076 | /* make sure HKLM\\Software\\Wine\\Wine exists as non-volatile key */ |
| 1077 | if (RegCreateKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine", &hKeySW )) |
Eric Pouech | 0521a54 | 2000-02-20 13:39:42 +0000 | [diff] [blame] | 1078 | { |
| 1079 | ERR("Cannot create config registry key\n" ); |
| 1080 | return 0; |
| 1081 | } |
| 1082 | RegCloseKey( hKeySW ); |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1083 | if (RegCreateKeyExA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config", 0, NULL, |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 1084 | REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &wine_profile_key, &disp )) |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1085 | { |
| 1086 | ERR("Cannot create config registry key\n" ); |
| 1087 | return 0; |
| 1088 | } |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1089 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1090 | if (!CLIENT_IsBootThread()) return 1; /* already loaded */ |
| 1091 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1092 | if ((p = getenv( "HOME" )) != NULL) |
| 1093 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1094 | lstrcpynA(buffer, p, MAX_PATHNAME_LEN - sizeof(PROFILE_WineIniName)); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1095 | strcat( buffer, PROFILE_WineIniName ); |
| 1096 | if ((f = fopen( buffer, "r" )) != NULL) |
| 1097 | { |
Francois Gouget | baa9bf9 | 1999-12-27 05:24:06 +0000 | [diff] [blame] | 1098 | lstrcpynA(PROFILE_WineIniUsed,buffer,MAX_PATHNAME_LEN); |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1099 | goto found; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1100 | } |
| 1101 | } |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 1102 | else WARN("could not get $HOME value for config file.\n" ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1103 | |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 1104 | if (disp == REG_OPENED_EXISTING_KEY) return 1; /* loaded by the server */ |
| 1105 | |
Chris Morgan | 4a3d508 | 2001-01-10 22:57:34 +0000 | [diff] [blame] | 1106 | MESSAGE( "Can't open configuration file %s/config\n",get_config_dir() ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1107 | return 0; |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1108 | |
| 1109 | found: |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 1110 | |
| 1111 | if (disp == REG_OPENED_EXISTING_KEY) |
| 1112 | { |
Chris Morgan | 4a3d508 | 2001-01-10 22:57:34 +0000 | [diff] [blame] | 1113 | MESSAGE( "Warning: configuration loaded by the server from '%s/config',\n" |
| 1114 | " file '%s' was ignored.\n", get_config_dir(), PROFILE_WineIniUsed ); |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 1115 | fclose( f ); |
| 1116 | return 1; |
| 1117 | } |
| 1118 | |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame] | 1119 | /* convert to the new format */ |
| 1120 | sprintf( buffer, "%s/config", get_config_dir() ); |
| 1121 | if (convert_config( f, buffer )) |
| 1122 | { |
| 1123 | MESSAGE( "The '%s' configuration file has been converted\n" |
| 1124 | "to the new format and saved as '%s'.\n", PROFILE_WineIniUsed, buffer ); |
| 1125 | MESSAGE( "You should verify that the contents of the new file are correct,\n" |
| 1126 | "and then remove the old one and restart Wine.\n" ); |
| 1127 | ExitProcess(0); |
| 1128 | } |
| 1129 | |
Alexandre Julliard | 00377a7 | 2000-02-19 20:50:00 +0000 | [diff] [blame] | 1130 | PROFILE_RegistryLoad( wine_profile_key, f ); |
| 1131 | fclose( f ); |
| 1132 | return 1; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
| 1135 | |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 1136 | /*********************************************************************** |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1137 | * PROFILE_UsageWineIni |
| 1138 | * |
| 1139 | * Explain the wine.ini file to those who don't read documentation. |
| 1140 | * Keep below one screenful in length so that error messages above are |
| 1141 | * noticed. |
| 1142 | */ |
| 1143 | void PROFILE_UsageWineIni(void) |
| 1144 | { |
Alexandre Julliard | 359f497e | 1999-07-04 16:02:24 +0000 | [diff] [blame] | 1145 | MESSAGE("Perhaps you have not properly edited or created " |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1146 | "your Wine configuration file.\n"); |
Gerard Patel | 151023d | 2001-01-22 19:27:06 +0000 | [diff] [blame] | 1147 | MESSAGE("This is '%s/config'\n", get_config_dir()); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1148 | /* RTFM, so to say */ |
| 1149 | } |
| 1150 | |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1151 | /*********************************************************************** |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 1152 | * PROFILE_GetStringItem |
| 1153 | * |
| 1154 | * Convenience function that turns a string 'xxx, yyy, zzz' into |
| 1155 | * the 'xxx\0 yyy, zzz' and returns a pointer to the 'yyy, zzz'. |
| 1156 | */ |
| 1157 | char* PROFILE_GetStringItem( char* start ) |
| 1158 | { |
| 1159 | char* lpchX, *lpch; |
| 1160 | |
| 1161 | for (lpchX = start, lpch = NULL; *lpchX != '\0'; lpchX++ ) |
| 1162 | { |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 1163 | if( *lpchX == ',' ) |
| 1164 | { |
| 1165 | if( lpch ) *lpch = '\0'; else *lpchX = '\0'; |
| 1166 | while( *(++lpchX) ) |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 1167 | if( !PROFILE_isspace(*lpchX) ) return lpchX; |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 1168 | } |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 1169 | else if( PROFILE_isspace( *lpchX ) && !lpch ) lpch = lpchX; |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1170 | else lpch = NULL; |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 1171 | } |
| 1172 | if( lpch ) *lpch = '\0'; |
| 1173 | return NULL; |
| 1174 | } |
| 1175 | |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1176 | /********************* API functions **********************************/ |
| 1177 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1178 | /*********************************************************************** |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1179 | * GetProfileInt16 (KERNEL.57) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1180 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1181 | UINT16 WINAPI GetProfileInt16( LPCSTR section, LPCSTR entry, INT16 def_val ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1182 | { |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1183 | return GetPrivateProfileInt16( section, entry, def_val, "win.ini" ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | |
| 1187 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1188 | * GetProfileIntA (KERNEL32.264) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1189 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1190 | UINT WINAPI GetProfileIntA( LPCSTR section, LPCSTR entry, INT def_val ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1191 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1192 | return GetPrivateProfileIntA( section, entry, def_val, "win.ini" ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1193 | } |
| 1194 | |
| 1195 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1196 | * GetProfileIntW (KERNEL32.264) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1197 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1198 | UINT WINAPI GetProfileIntW( LPCWSTR section, LPCWSTR entry, INT def_val ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1199 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1200 | return GetPrivateProfileIntW( section, entry, def_val, wininiW ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 1203 | /* |
| 1204 | * undoc_feature means: |
| 1205 | * return section names string list if both section and entry are NULL. |
| 1206 | */ |
| 1207 | static int PROFILE_GetPrivateProfileString( LPCSTR section, LPCSTR entry, |
| 1208 | LPCSTR def_val, LPSTR buffer, |
| 1209 | UINT16 len, LPCSTR filename, |
| 1210 | BOOL undoc_feature ) |
| 1211 | { |
| 1212 | int ret; |
| 1213 | LPSTR pDefVal = NULL; |
| 1214 | |
| 1215 | if (!filename) |
| 1216 | filename = "win.ini"; |
| 1217 | |
| 1218 | /* strip any trailing ' ' of def_val. */ |
| 1219 | if (def_val) |
| 1220 | { |
| 1221 | LPSTR p = (LPSTR)&def_val[strlen(def_val)]; /* even "" works ! */ |
| 1222 | |
| 1223 | while (p > def_val) |
| 1224 | { |
| 1225 | p--; |
| 1226 | if ((*p) != ' ') |
| 1227 | break; |
| 1228 | } |
| 1229 | if (*p == ' ') /* ouch, contained trailing ' ' */ |
| 1230 | { |
| 1231 | int len = (int)p - (int)def_val; |
| 1232 | pDefVal = HeapAlloc(GetProcessHeap(), 0, len + 1); |
| 1233 | strncpy(pDefVal, def_val, len); |
| 1234 | pDefVal[len] = '\0'; |
| 1235 | } |
| 1236 | } |
| 1237 | if (!pDefVal) |
| 1238 | pDefVal = (LPSTR)def_val; |
| 1239 | |
| 1240 | EnterCriticalSection( &PROFILE_CritSect ); |
| 1241 | |
| 1242 | if (PROFILE_Open( filename )) { |
| 1243 | if ((undoc_feature) && (section == NULL) && (entry == NULL)) |
| 1244 | /* undocumented; both section and entry are NULL */ |
| 1245 | ret = PROFILE_GetSectionNames(buffer, len); |
| 1246 | else |
| 1247 | ret = PROFILE_GetString( section, entry, pDefVal, buffer, len ); |
| 1248 | } else { |
| 1249 | lstrcpynA( buffer, pDefVal, len ); |
| 1250 | ret = strlen( buffer ); |
| 1251 | } |
| 1252 | |
| 1253 | LeaveCriticalSection( &PROFILE_CritSect ); |
| 1254 | |
| 1255 | if (pDefVal != def_val) /* allocated */ |
| 1256 | HeapFree(GetProcessHeap(), 0, pDefVal); |
| 1257 | |
| 1258 | return ret; |
| 1259 | } |
| 1260 | |
| 1261 | /*********************************************************************** |
| 1262 | * GetPrivateProfileString16 (KERNEL.128) |
| 1263 | */ |
| 1264 | INT16 WINAPI GetPrivateProfileString16( LPCSTR section, LPCSTR entry, |
| 1265 | LPCSTR def_val, LPSTR buffer, |
| 1266 | UINT16 len, LPCSTR filename ) |
| 1267 | { |
| 1268 | return PROFILE_GetPrivateProfileString( section, entry, def_val, |
| 1269 | buffer, len, filename, FALSE ); |
| 1270 | } |
| 1271 | |
| 1272 | /*********************************************************************** |
| 1273 | * GetPrivateProfileStringA (KERNEL32.255) |
| 1274 | */ |
| 1275 | INT WINAPI GetPrivateProfileStringA( LPCSTR section, LPCSTR entry, |
| 1276 | LPCSTR def_val, LPSTR buffer, |
| 1277 | UINT len, LPCSTR filename ) |
| 1278 | { |
| 1279 | return PROFILE_GetPrivateProfileString( section, entry, def_val, |
| 1280 | buffer, len, filename, TRUE ); |
| 1281 | } |
| 1282 | |
| 1283 | /*********************************************************************** |
| 1284 | * GetPrivateProfileStringW (KERNEL32.256) |
| 1285 | */ |
| 1286 | INT WINAPI GetPrivateProfileStringW( LPCWSTR section, LPCWSTR entry, |
| 1287 | LPCWSTR def_val, LPWSTR buffer, |
| 1288 | UINT len, LPCWSTR filename ) |
| 1289 | { |
| 1290 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1291 | LPSTR entryA = HEAP_strdupWtoA( GetProcessHeap(), 0, entry ); |
| 1292 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
| 1293 | LPSTR def_valA = HEAP_strdupWtoA( GetProcessHeap(), 0, def_val ); |
| 1294 | LPSTR bufferA = HeapAlloc( GetProcessHeap(), 0, len ); |
| 1295 | INT ret = GetPrivateProfileStringA( sectionA, entryA, def_valA, |
| 1296 | bufferA, len, filenameA ); |
Alexandre Julliard | 24a62ab | 2000-11-28 22:40:56 +0000 | [diff] [blame] | 1297 | if (len > 0 && !MultiByteToWideChar( CP_ACP, 0, bufferA, -1, buffer, len )) |
| 1298 | buffer[len-1] = 0; |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 1299 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1300 | HeapFree( GetProcessHeap(), 0, entryA ); |
| 1301 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1302 | HeapFree( GetProcessHeap(), 0, def_valA ); |
| 1303 | HeapFree( GetProcessHeap(), 0, bufferA); |
| 1304 | return ret; |
| 1305 | } |
| 1306 | |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1307 | /*********************************************************************** |
| 1308 | * GetProfileString16 (KERNEL.58) |
| 1309 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1310 | INT16 WINAPI GetProfileString16( LPCSTR section, LPCSTR entry, LPCSTR def_val, |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 1311 | LPSTR buffer, UINT16 len ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1312 | { |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 1313 | return PROFILE_GetPrivateProfileString( section, entry, def_val, |
| 1314 | buffer, len, "win.ini", FALSE ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1315 | } |
| 1316 | |
| 1317 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1318 | * GetProfileStringA (KERNEL32.268) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1319 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1320 | INT WINAPI GetProfileStringA( LPCSTR section, LPCSTR entry, LPCSTR def_val, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1321 | LPSTR buffer, UINT len ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1322 | { |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 1323 | return PROFILE_GetPrivateProfileString( section, entry, def_val, |
| 1324 | buffer, len, "win.ini", TRUE ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
| 1327 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1328 | * GetProfileStringW (KERNEL32.269) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1329 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1330 | INT WINAPI GetProfileStringW( LPCWSTR section, LPCWSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1331 | LPCWSTR def_val, LPWSTR buffer, UINT len ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1332 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1333 | return GetPrivateProfileStringW( section, entry, def_val, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1334 | buffer, len, wininiW ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 1337 | /*********************************************************************** |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1338 | * WriteProfileString16 (KERNEL.59) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1339 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1340 | BOOL16 WINAPI WriteProfileString16( LPCSTR section, LPCSTR entry, |
| 1341 | LPCSTR string ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1342 | { |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1343 | return WritePrivateProfileString16( section, entry, string, "win.ini" ); |
| 1344 | } |
| 1345 | |
| 1346 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1347 | * WriteProfileStringA (KERNEL32.587) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1348 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1349 | BOOL WINAPI WriteProfileStringA( LPCSTR section, LPCSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1350 | LPCSTR string ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1351 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1352 | return WritePrivateProfileStringA( section, entry, string, "win.ini" ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1356 | * WriteProfileStringW (KERNEL32.588) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1357 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1358 | BOOL WINAPI WriteProfileStringW( LPCWSTR section, LPCWSTR entry, |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1359 | LPCWSTR string ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1360 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1361 | return WritePrivateProfileStringW( section, entry, string, wininiW ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | |
| 1365 | /*********************************************************************** |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1366 | * GetPrivateProfileInt16 (KERNEL.127) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1367 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1368 | UINT16 WINAPI GetPrivateProfileInt16( LPCSTR section, LPCSTR entry, |
| 1369 | INT16 def_val, LPCSTR filename ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1370 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1371 | long result=(long)GetPrivateProfileIntA(section,entry,def_val,filename); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1372 | |
| 1373 | if (result > 65535) return 65535; |
| 1374 | if (result >= 0) return (UINT16)result; |
| 1375 | if (result < -32768) return -32768; |
| 1376 | return (UINT16)(INT16)result; |
| 1377 | } |
| 1378 | |
| 1379 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1380 | * GetPrivateProfileIntA (KERNEL32.251) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1381 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1382 | UINT WINAPI GetPrivateProfileIntA( LPCSTR section, LPCSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1383 | INT def_val, LPCSTR filename ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1384 | { |
| 1385 | char buffer[20]; |
| 1386 | char *p; |
| 1387 | long result; |
| 1388 | |
Andreas Mohr | 3ac104f | 2000-09-29 21:04:44 +0000 | [diff] [blame] | 1389 | PROFILE_GetPrivateProfileString( section, entry, "", |
| 1390 | buffer, sizeof(buffer), filename, FALSE ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1391 | if (!buffer[0]) return (UINT)def_val; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1392 | result = strtol( buffer, &p, 0 ); |
| 1393 | if (p == buffer) return 0; /* No digits at all */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1394 | return (UINT)result; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1395 | } |
| 1396 | |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1397 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1398 | * GetPrivateProfileIntW (KERNEL32.252) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1399 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1400 | UINT WINAPI GetPrivateProfileIntW( LPCWSTR section, LPCWSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1401 | INT def_val, LPCWSTR filename ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1402 | { |
Alexandre Julliard | 7ebe1a4 | 1996-12-22 18:27:48 +0000 | [diff] [blame] | 1403 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1404 | LPSTR entryA = HEAP_strdupWtoA( GetProcessHeap(), 0, entry ); |
| 1405 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1406 | UINT res = GetPrivateProfileIntA(sectionA, entryA, def_val, filenameA); |
Alexandre Julliard | 7ebe1a4 | 1996-12-22 18:27:48 +0000 | [diff] [blame] | 1407 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1408 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1409 | HeapFree( GetProcessHeap(), 0, entryA ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1410 | return res; |
| 1411 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1412 | |
| 1413 | /*********************************************************************** |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1414 | * GetPrivateProfileSection16 (KERNEL.418) |
| 1415 | */ |
| 1416 | INT16 WINAPI GetPrivateProfileSection16( LPCSTR section, LPSTR buffer, |
| 1417 | UINT16 len, LPCSTR filename ) |
| 1418 | { |
| 1419 | return GetPrivateProfileSectionA( section, buffer, len, filename ); |
| 1420 | } |
| 1421 | |
| 1422 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1423 | * GetPrivateProfileSectionA (KERNEL32.255) |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 1424 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1425 | INT WINAPI GetPrivateProfileSectionA( LPCSTR section, LPSTR buffer, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1426 | DWORD len, LPCSTR filename ) |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 1427 | { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1428 | int ret = 0; |
| 1429 | |
| 1430 | EnterCriticalSection( &PROFILE_CritSect ); |
| 1431 | |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 1432 | if (PROFILE_Open( filename )) |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1433 | ret = PROFILE_GetSection(CurProfile->section, section, buffer, len, |
| 1434 | FALSE, TRUE); |
| 1435 | |
| 1436 | LeaveCriticalSection( &PROFILE_CritSect ); |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1437 | |
Marcus Meissner | 264360f | 1999-05-08 10:02:05 +0000 | [diff] [blame] | 1438 | return ret; |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 1439 | } |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1440 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1441 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1442 | * GetPrivateProfileSectionW (KERNEL32.256) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1443 | */ |
| 1444 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1445 | INT WINAPI GetPrivateProfileSectionW (LPCWSTR section, LPWSTR buffer, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1446 | DWORD len, LPCWSTR filename ) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1447 | |
| 1448 | { |
| 1449 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1450 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
| 1451 | LPSTR bufferA = HeapAlloc( GetProcessHeap(), 0, len ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1452 | INT ret = GetPrivateProfileSectionA( sectionA, bufferA, len, |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1453 | filenameA ); |
Marcus Meissner | 264360f | 1999-05-08 10:02:05 +0000 | [diff] [blame] | 1454 | MultiByteToWideChar(CP_ACP,0,bufferA,ret,buffer,len); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1455 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1456 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1457 | HeapFree( GetProcessHeap(), 0, bufferA); |
| 1458 | return ret; |
| 1459 | } |
| 1460 | |
| 1461 | /*********************************************************************** |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1462 | * GetProfileSection16 (KERNEL.419) |
| 1463 | */ |
| 1464 | INT16 WINAPI GetProfileSection16( LPCSTR section, LPSTR buffer, UINT16 len ) |
| 1465 | { |
| 1466 | return GetPrivateProfileSection16( section, buffer, len, "win.ini" ); |
| 1467 | } |
| 1468 | |
| 1469 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1470 | * GetProfileSectionA (KERNEL32.268) |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1471 | */ |
| 1472 | INT WINAPI GetProfileSectionA( LPCSTR section, LPSTR buffer, DWORD len ) |
| 1473 | { |
| 1474 | return GetPrivateProfileSectionA( section, buffer, len, "win.ini" ); |
| 1475 | } |
| 1476 | |
| 1477 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1478 | * GetProfileSectionW (KERNEL32) |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1479 | */ |
| 1480 | INT WINAPI GetProfileSectionW( LPCWSTR section, LPWSTR buffer, DWORD len ) |
| 1481 | { |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1482 | return GetPrivateProfileSectionW( section, buffer, len, wininiW ); |
| 1483 | } |
| 1484 | |
| 1485 | |
| 1486 | /*********************************************************************** |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1487 | * WritePrivateProfileString16 (KERNEL.129) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1488 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1489 | BOOL16 WINAPI WritePrivateProfileString16( LPCSTR section, LPCSTR entry, |
| 1490 | LPCSTR string, LPCSTR filename ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1491 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1492 | return WritePrivateProfileStringA(section,entry,string,filename); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1493 | } |
| 1494 | |
| 1495 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1496 | * WritePrivateProfileStringA (KERNEL32.582) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1497 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1498 | BOOL WINAPI WritePrivateProfileStringA( LPCSTR section, LPCSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1499 | LPCSTR string, LPCSTR filename ) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1500 | { |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1501 | BOOL ret = FALSE; |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1502 | |
| 1503 | EnterCriticalSection( &PROFILE_CritSect ); |
| 1504 | |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1505 | if (PROFILE_Open( filename )) |
| 1506 | { |
| 1507 | if (!section && !entry && !string) |
| 1508 | PROFILE_ReleaseFile(); /* always return FALSE in this case */ |
| 1509 | else |
| 1510 | ret = PROFILE_SetString( section, entry, string ); |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | LeaveCriticalSection( &PROFILE_CritSect ); |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1514 | return ret; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1517 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1518 | * WritePrivateProfileStringW (KERNEL32.583) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1519 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1520 | BOOL WINAPI WritePrivateProfileStringW( LPCWSTR section, LPCWSTR entry, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1521 | LPCWSTR string, LPCWSTR filename ) |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1522 | { |
Alexandre Julliard | 7ebe1a4 | 1996-12-22 18:27:48 +0000 | [diff] [blame] | 1523 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1524 | LPSTR entryA = HEAP_strdupWtoA( GetProcessHeap(), 0, entry ); |
| 1525 | LPSTR stringA = HEAP_strdupWtoA( GetProcessHeap(), 0, string ); |
| 1526 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1527 | BOOL res = WritePrivateProfileStringA( sectionA, entryA, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1528 | stringA, filenameA ); |
Alexandre Julliard | 7ebe1a4 | 1996-12-22 18:27:48 +0000 | [diff] [blame] | 1529 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1530 | HeapFree( GetProcessHeap(), 0, entryA ); |
| 1531 | HeapFree( GetProcessHeap(), 0, stringA ); |
| 1532 | HeapFree( GetProcessHeap(), 0, filenameA ); |
Alexandre Julliard | da0cfb3 | 1996-12-01 17:17:47 +0000 | [diff] [blame] | 1533 | return res; |
| 1534 | } |
| 1535 | |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1536 | /*********************************************************************** |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1537 | * WritePrivateProfileSection16 (KERNEL.416) |
| 1538 | */ |
| 1539 | BOOL16 WINAPI WritePrivateProfileSection16( LPCSTR section, |
| 1540 | LPCSTR string, LPCSTR filename ) |
| 1541 | { |
| 1542 | return WritePrivateProfileSectionA( section, string, filename ); |
| 1543 | } |
| 1544 | |
| 1545 | /*********************************************************************** |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1546 | * WritePrivateProfileSectionA (KERNEL32) |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1547 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1548 | BOOL WINAPI WritePrivateProfileSectionA( LPCSTR section, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1549 | LPCSTR string, LPCSTR filename ) |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1550 | { |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1551 | BOOL ret = FALSE; |
| 1552 | LPSTR p ; |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1553 | |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1554 | EnterCriticalSection( &PROFILE_CritSect ); |
| 1555 | |
| 1556 | if (PROFILE_Open( filename )) { |
Marcus Meissner | 25e7403 | 2000-11-26 22:36:19 +0000 | [diff] [blame] | 1557 | if (!section && !string) |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1558 | PROFILE_ReleaseFile(); /* always return FALSE in this case */ |
Uwe Bonnes | d88fbb7 | 2000-06-20 20:48:46 +0000 | [diff] [blame] | 1559 | else if (!string) /* delete the named section*/ |
| 1560 | ret = PROFILE_SetString(section,NULL,NULL); |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1561 | else { |
Uwe Bonnes | d88fbb7 | 2000-06-20 20:48:46 +0000 | [diff] [blame] | 1562 | PROFILE_DeleteAllKeys(section); |
| 1563 | ret = TRUE; |
| 1564 | while(*string) { |
| 1565 | LPSTR buf=HEAP_strdupA( GetProcessHeap(), 0, string ); |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1566 | if((p=strchr( buf, '='))){ |
| 1567 | *p='\0'; |
| 1568 | ret = PROFILE_SetString( section, buf, p+1 ); |
| 1569 | |
| 1570 | } |
| 1571 | HeapFree( GetProcessHeap(), 0, buf ); |
| 1572 | string += strlen(string)+1; |
| 1573 | } |
| 1574 | |
| 1575 | } |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1576 | } |
Rein Klazes | 7458be0 | 2000-01-05 01:42:51 +0000 | [diff] [blame] | 1577 | |
| 1578 | LeaveCriticalSection( &PROFILE_CritSect ); |
| 1579 | return ret; |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1580 | } |
| 1581 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1582 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1583 | * WritePrivateProfileSectionW (KERNEL32) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1584 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1585 | BOOL WINAPI WritePrivateProfileSectionW( LPCWSTR section, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1586 | LPCWSTR string, LPCWSTR filename) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1587 | |
| 1588 | { |
| 1589 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1590 | LPSTR stringA = HEAP_strdupWtoA( GetProcessHeap(), 0, string ); |
| 1591 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1592 | BOOL res = WritePrivateProfileSectionA( sectionA, stringA, filenameA ); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1593 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1594 | HeapFree( GetProcessHeap(), 0, stringA ); |
| 1595 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1596 | return res; |
| 1597 | } |
| 1598 | |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1599 | /*********************************************************************** |
| 1600 | * WriteProfileSection16 (KERNEL.417) |
| 1601 | */ |
| 1602 | BOOL16 WINAPI WriteProfileSection16( LPCSTR section, LPCSTR keys_n_values) |
| 1603 | { |
| 1604 | return WritePrivateProfileSection16( section, keys_n_values, "win.ini"); |
| 1605 | } |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1606 | |
| 1607 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1608 | * WriteProfileSectionA (KERNEL32.747) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1609 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1610 | BOOL WINAPI WriteProfileSectionA( LPCSTR section, LPCSTR keys_n_values) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1611 | |
| 1612 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1613 | return WritePrivateProfileSectionA( section, keys_n_values, "win.ini"); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1617 | * WriteProfileSectionW (KERNEL32.748) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1618 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1619 | BOOL WINAPI WriteProfileSectionW( LPCWSTR section, LPCWSTR keys_n_values) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1620 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1621 | return (WritePrivateProfileSectionW (section,keys_n_values, wininiW)); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
| 1624 | /*********************************************************************** |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1625 | * GetPrivateProfileSectionNames16 (KERNEL.143) |
| 1626 | */ |
| 1627 | WORD WINAPI GetPrivateProfileSectionNames16( LPSTR buffer, WORD size, |
| 1628 | LPCSTR filename ) |
| 1629 | { |
Andreas Mohr | adfeec9 | 1999-05-22 16:04:57 +0000 | [diff] [blame] | 1630 | WORD ret = 0; |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1631 | |
| 1632 | EnterCriticalSection( &PROFILE_CritSect ); |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1633 | |
Andreas Mohr | adfeec9 | 1999-05-22 16:04:57 +0000 | [diff] [blame] | 1634 | if (PROFILE_Open( filename )) |
| 1635 | ret = PROFILE_GetSectionNames(buffer, size); |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1636 | |
| 1637 | LeaveCriticalSection( &PROFILE_CritSect ); |
| 1638 | |
| 1639 | return ret; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1640 | } |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1641 | |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1642 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1643 | /*********************************************************************** |
| 1644 | * GetProfileSectionNames16 (KERNEL.142) |
| 1645 | */ |
| 1646 | WORD WINAPI GetProfileSectionNames16( LPSTR buffer, WORD size) |
| 1647 | |
| 1648 | { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1649 | return (GetPrivateProfileSectionNames16 (buffer,size,"win.ini")); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1650 | } |
| 1651 | |
| 1652 | |
| 1653 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1654 | * GetPrivateProfileSectionNamesA (KERNEL32.365) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1655 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1656 | DWORD WINAPI GetPrivateProfileSectionNamesA( LPSTR buffer, DWORD size, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1657 | LPCSTR filename) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1658 | |
| 1659 | { |
| 1660 | return (GetPrivateProfileSectionNames16 (buffer,size,filename)); |
| 1661 | } |
| 1662 | |
| 1663 | |
| 1664 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1665 | * GetPrivateProfileSectionNamesW (KERNEL32.366) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1666 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1667 | DWORD WINAPI GetPrivateProfileSectionNamesW( LPWSTR buffer, DWORD size, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1668 | LPCWSTR filename) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1669 | |
| 1670 | { |
| 1671 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
| 1672 | LPSTR bufferA = HeapAlloc( GetProcessHeap(), 0, size); |
| 1673 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1674 | INT ret = GetPrivateProfileSectionNames16 (bufferA, size, filenameA); |
Alexandre Julliard | 24a62ab | 2000-11-28 22:40:56 +0000 | [diff] [blame] | 1675 | if (size > 0 && !MultiByteToWideChar( CP_ACP, 0, bufferA, -1, buffer, size )) |
| 1676 | buffer[size-1] = 0; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1677 | HeapFree( GetProcessHeap(), 0, bufferA); |
| 1678 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1679 | |
| 1680 | return ret; |
| 1681 | } |
| 1682 | |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1683 | /*********************************************************************** |
| 1684 | * GetPrivateProfileStruct16 (KERNEL.407) |
| 1685 | */ |
| 1686 | BOOL16 WINAPI GetPrivateProfileStruct16(LPCSTR section, LPCSTR key, |
| 1687 | LPVOID buf, UINT16 len, LPCSTR filename) |
| 1688 | { |
| 1689 | return GetPrivateProfileStructA( section, key, buf, len, filename ); |
| 1690 | } |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1691 | |
| 1692 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1693 | * GetPrivateProfileStructA (KERNEL32.370) |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1694 | * |
| 1695 | * Should match Win95's behaviour pretty much |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1696 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1697 | BOOL WINAPI GetPrivateProfileStructA (LPCSTR section, LPCSTR key, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1698 | LPVOID buf, UINT len, LPCSTR filename) |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1699 | { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1700 | BOOL ret = FALSE; |
| 1701 | |
| 1702 | EnterCriticalSection( &PROFILE_CritSect ); |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1703 | |
| 1704 | if (PROFILE_Open( filename )) { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1705 | PROFILEKEY *k = PROFILE_Find ( &CurProfile->section, section, key, FALSE); |
| 1706 | if (k) { |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1707 | TRACE("value (at %p): '%s'\n", k->value, k->value); |
| 1708 | if (((strlen(k->value) - 2) / 2) == len) |
| 1709 | { |
| 1710 | LPSTR end, p; |
| 1711 | BOOL valid = TRUE; |
| 1712 | CHAR c; |
| 1713 | DWORD chksum = 0; |
| 1714 | |
| 1715 | end = k->value + strlen(k->value); /* -> '\0' */ |
| 1716 | /* check for invalid chars in ASCII coded hex string */ |
| 1717 | for (p=k->value; p < end; p++) |
| 1718 | { |
| 1719 | if (!isxdigit(*p)) |
| 1720 | { |
| 1721 | WARN("invalid char '%c' in file '%s'->'[%s]'->'%s' !\n", |
| 1722 | *p, filename, section, key); |
| 1723 | valid = FALSE; |
| 1724 | break; |
| 1725 | } |
| 1726 | } |
| 1727 | if (valid) |
| 1728 | { |
| 1729 | BOOL highnibble = TRUE; |
| 1730 | BYTE b = 0, val; |
| 1731 | LPBYTE binbuf = (LPBYTE)buf; |
| 1732 | |
| 1733 | end -= 2; /* don't include checksum in output data */ |
| 1734 | /* translate ASCII hex format into binary data */ |
| 1735 | for (p=k->value; p < end; p++) |
| 1736 | { |
| 1737 | c = toupper(*p); |
| 1738 | val = (c > '9') ? |
| 1739 | (c - 'A' + 10) : (c - '0'); |
| 1740 | |
| 1741 | if (highnibble) |
| 1742 | b = val << 4; |
| 1743 | else |
| 1744 | { |
| 1745 | b += val; |
| 1746 | *binbuf++ = b; /* feed binary data into output */ |
| 1747 | chksum += b; /* calculate checksum */ |
| 1748 | } |
| 1749 | highnibble ^= 1; /* toggle */ |
| 1750 | } |
| 1751 | /* retrieve stored checksum value */ |
| 1752 | c = toupper(*p++); |
| 1753 | b = ( (c > '9') ? (c - 'A' + 10) : (c - '0') ) << 4; |
| 1754 | c = toupper(*p); |
| 1755 | b += (c > '9') ? (c - 'A' + 10) : (c - '0'); |
| 1756 | if (b == (chksum & 0xff)) /* checksums match ? */ |
| 1757 | ret = TRUE; |
| 1758 | } |
| 1759 | } |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1760 | } |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1761 | } |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1762 | LeaveCriticalSection( &PROFILE_CritSect ); |
| 1763 | |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1764 | return ret; |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1765 | } |
| 1766 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1767 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1768 | * GetPrivateProfileStructW (KERNEL32.543) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1769 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1770 | BOOL WINAPI GetPrivateProfileStructW (LPCWSTR section, LPCWSTR key, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1771 | LPVOID buffer, UINT len, LPCWSTR filename) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1772 | { |
| 1773 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1774 | LPSTR keyA = HEAP_strdupWtoA( GetProcessHeap(), 0, key); |
| 1775 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
| 1776 | LPSTR bufferA = HeapAlloc( GetProcessHeap(), 0, len ); |
| 1777 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1778 | INT ret = GetPrivateProfileStructA( sectionA, keyA, bufferA, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1779 | len, filenameA ); |
Alexandre Julliard | 24a62ab | 2000-11-28 22:40:56 +0000 | [diff] [blame] | 1780 | if (len > 0 && !MultiByteToWideChar( CP_ACP, 0, bufferA, -1, buffer, len )) |
| 1781 | ((LPWSTR)buffer)[len-1] = 0; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1782 | HeapFree( GetProcessHeap(), 0, bufferA); |
| 1783 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1784 | HeapFree( GetProcessHeap(), 0, keyA ); |
| 1785 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1786 | |
| 1787 | return ret; |
| 1788 | } |
| 1789 | |
| 1790 | |
| 1791 | |
Ulrich Weigand | 8228bd6 | 1999-04-22 09:56:09 +0000 | [diff] [blame] | 1792 | /*********************************************************************** |
| 1793 | * WritePrivateProfileStruct16 (KERNEL.406) |
| 1794 | */ |
| 1795 | BOOL16 WINAPI WritePrivateProfileStruct16 (LPCSTR section, LPCSTR key, |
| 1796 | LPVOID buf, UINT16 bufsize, LPCSTR filename) |
| 1797 | { |
| 1798 | return WritePrivateProfileStructA( section, key, buf, bufsize, filename ); |
| 1799 | } |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1800 | |
| 1801 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1802 | * WritePrivateProfileStructA (KERNEL32.744) |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1803 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1804 | BOOL WINAPI WritePrivateProfileStructA (LPCSTR section, LPCSTR key, |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1805 | LPVOID buf, UINT bufsize, LPCSTR filename) |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1806 | { |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1807 | BOOL ret = FALSE; |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1808 | LPBYTE binbuf; |
| 1809 | LPSTR outstring, p; |
| 1810 | DWORD sum = 0; |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1811 | |
| 1812 | if (!section && !key && !buf) /* flush the cache */ |
| 1813 | return WritePrivateProfileStringA( NULL, NULL, NULL, filename ); |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1814 | |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1815 | /* allocate string buffer for hex chars + checksum hex char + '\0' */ |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 1816 | outstring = HeapAlloc( GetProcessHeap(), 0, bufsize*2 + 2 + 1); |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1817 | p = outstring; |
| 1818 | for (binbuf = (LPBYTE)buf; binbuf < (LPBYTE)buf+bufsize; binbuf++) { |
| 1819 | *p++ = hex[*binbuf >> 4]; |
| 1820 | *p++ = hex[*binbuf & 0xf]; |
| 1821 | sum += *binbuf; |
| 1822 | } |
| 1823 | /* checksum is sum & 0xff */ |
| 1824 | *p++ = hex[(sum & 0xf0) >> 4]; |
| 1825 | *p++ = hex[sum & 0xf]; |
| 1826 | *p++ = '\0'; |
| 1827 | |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1828 | EnterCriticalSection( &PROFILE_CritSect ); |
| 1829 | |
Alexandre Julliard | e61b792 | 1999-07-31 19:24:11 +0000 | [diff] [blame] | 1830 | if (PROFILE_Open( filename )) |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1831 | ret = PROFILE_SetString( section, key, outstring ); |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1832 | |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1833 | LeaveCriticalSection( &PROFILE_CritSect ); |
| 1834 | |
Alexandre Julliard | 90476d6 | 2000-02-16 22:47:24 +0000 | [diff] [blame] | 1835 | HeapFree( GetProcessHeap(), 0, outstring ); |
Andreas Mohr | 17b1f46 | 2000-01-30 21:15:14 +0000 | [diff] [blame] | 1836 | |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1837 | return ret; |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1840 | /*********************************************************************** |
Patrik Stridvall | 2d6457c | 2000-03-28 20:22:59 +0000 | [diff] [blame] | 1841 | * WritePrivateProfileStructW (KERNEL32.544) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1842 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1843 | BOOL WINAPI WritePrivateProfileStructW (LPCWSTR section, LPCWSTR key, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1844 | LPVOID buf, UINT bufsize, LPCWSTR filename) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1845 | { |
| 1846 | LPSTR sectionA = HEAP_strdupWtoA( GetProcessHeap(), 0, section ); |
| 1847 | LPSTR keyA = HEAP_strdupWtoA( GetProcessHeap(), 0, key); |
| 1848 | LPSTR filenameA = HEAP_strdupWtoA( GetProcessHeap(), 0, filename ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1849 | INT ret = WritePrivateProfileStructA( sectionA, keyA, buf, bufsize, |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1850 | filenameA ); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1851 | HeapFree( GetProcessHeap(), 0, sectionA ); |
| 1852 | HeapFree( GetProcessHeap(), 0, keyA ); |
| 1853 | HeapFree( GetProcessHeap(), 0, filenameA ); |
| 1854 | |
| 1855 | return ret; |
| 1856 | } |
| 1857 | |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 1858 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1859 | /*********************************************************************** |
| 1860 | * WriteOutProfiles (KERNEL.315) |
| 1861 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1862 | void WINAPI WriteOutProfiles16(void) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1863 | { |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1864 | EnterCriticalSection( &PROFILE_CritSect ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1865 | PROFILE_FlushFile(); |
Eric Pouech | ed15575 | 1999-03-25 13:24:08 +0000 | [diff] [blame] | 1866 | LeaveCriticalSection( &PROFILE_CritSect ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1867 | } |
Marcus Meissner | 9b4fcf7 | 1999-12-04 04:19:55 +0000 | [diff] [blame] | 1868 | |
| 1869 | /*********************************************************************** |
| 1870 | * CloseProfileUserMapping (KERNEL.138) |
| 1871 | */ |
| 1872 | BOOL WINAPI CloseProfileUserMapping(void) { |
| 1873 | FIXME("(), stub!\n"); |
| 1874 | SetLastError(ERROR_CALL_NOT_IMPLEMENTED); |
| 1875 | return FALSE; |
| 1876 | } |