1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
|
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
mapembed.c
Abstract:
This module contains the functions that perform the mapping
between the "embedding" section of win.ini, and the subkeys
of HKEY_CLASSES_ROOT.
This mapping is a hack implemented on Win3.1, that must also
exist on NT.
It is implemnted in the WOW layer, since only some win16 apps
that read or write to the "embedding" section ( WinWord and
MsMail) depend on it.
Author:
Jaime F. Sasson (jaimes) 25-Nov-1992
--*/
#include "precomp.h"
#pragma hdrstop
MODNAME(mapembed.c);
#define WININITIMEOUT 2000
#define BUFFER_SIZE 128
#define EMPTY_STRING ""
DWORD _LastTimeUpdated = 0;
BOOL
IsWinIniHelper(
IN LPSTR FileName
)
/*++
Routine Description:
Determine if the name passed as argument refers to the file win.ini.
Used by IS_WIN_INI macro, which assures the argument is non-null and
deals with exact match of "win.ini".
Arguments:
FileName - File name to be examined.
Return Value:
BOOL - Returns TRUE if 'Name' refers to win.ini.
Otherwise, returns FALSE.
--*/
{
CHAR BufferForFullPath[MAX_PATH];
PSTR PointerToName;
DWORD SizeOfFullPath;
BOOL Result;
#ifdef DEBUG
//
// Filename argument must already be lowercase. Be sure.
//
{
char Lowercase[MAX_PATH];
WOW32ASSERT(strlen(FileName) < MAX_PATH-1);
strcpy(Lowercase, FileName);
_strlwr(Lowercase);
WOW32ASSERT(!strcmp(FileName, Lowercase));
}
#endif
if (!strcmp(FileName, szWinDotIni)) {
Result = TRUE;
goto Done;
}
SizeOfFullPath = GetFullPathName( FileName,
sizeof BufferForFullPath,
BufferForFullPath,
&PointerToName );
if (SizeOfFullPath == 0) {
Result = FALSE;
goto Done;
}
WOW32ASSERT( (SizeOfFullPath + 1) <= sizeof BufferForFullPath );
WOW32ASSERTMSG(pszWinIniFullPath && pszWinIniFullPath[0],
"WOW32 ERROR pszWinIniFullPath not initialized.\n");
Result = !_stricmp( pszWinIniFullPath, BufferForFullPath );
Done:
return Result;
}
VOID
UpdateEmbeddingAllKeys(
)
/*++
Routine Description:
Update the "embedding" section of win.ini based on the information
stored on the subkeys of HKEY_CLASSES_ROOT.
Arguments:
None.
Return Value:
None.
--*/
{
LONG iClass;
CHAR szClass[MAX_PATH + 1];
LONG Status;
for (iClass = 0;
(Status = RegEnumKey(HKEY_CLASSES_ROOT,iClass,szClass,sizeof( szClass ))) != ERROR_NO_MORE_ITEMS;
iClass++)
{
if( Status == ERROR_SUCCESS ) {
UpdateEmbeddingKey( szClass );
}
}
}
VOID
UpdateEmbeddingKey(
IN LPSTR KeyName
)
/*++
Routine Description:
Update one key of the "embedding" section of win.ini based on the
information stored on the correspondent subkey of HKEY_CLASSES_ROOT.
The code below is an improved version of the function
"UpdateWinIni" extracted from Win 3.1 (shell\library\dbf.c).
Arguments:
KeyName - Name of the key to be updated.
Return Value:
None.
--*/
{
LONG Status;
HKEY Key;
PSTR szClass;
LPSTR szClassName;
CHAR BufferForClassName[BUFFER_SIZE];
// char szClassName[60];
LPSTR szServer;
CHAR BufferForServer[BUFFER_SIZE];
// char szServer[64];
LPSTR szLine;
CHAR BufferForLine[2*BUFFER_SIZE];
// char szLine[128];
char szOldLine[2*BUFFER_SIZE];
// char szOldLine[128];
LPSTR lpDesc, lpForms;
int nCommas;
LONG cchClassNameSize;
LONG cchServerSize;
LONG cchLineSize;
if( KeyName == NULL ) {
return;
}
szClass = KeyName;
Key = NULL;
szClassName = BufferForClassName;
cchClassNameSize = sizeof( BufferForClassName );
szServer = BufferForServer;
cchServerSize = sizeof( BufferForServer );
szLine = BufferForLine;
if( RegOpenKey( HKEY_CLASSES_ROOT, szClass, &Key ) != ERROR_SUCCESS )
goto NukeClass;
Status = RegQueryValue(Key,NULL,szClassName,&cchClassNameSize);
if( ( Status != ERROR_SUCCESS ) &&
( Status != ERROR_MORE_DATA ) )
goto NukeClass;
if( Status == ERROR_MORE_DATA ) {
cchClassNameSize++;
szClassName = ( PSTR )malloc_w( cchClassNameSize );
if( szClassName == NULL )
goto NukeClass;
Status = RegQueryValue(Key,NULL,szClassName,&cchClassNameSize);
if( Status != ERROR_SUCCESS )
goto NukeClass;
}
if (!*szClassName)
goto NukeClass;
Status = RegQueryValue(Key,szServerKey,szServer,&cchServerSize);
if( ( Status != ERROR_SUCCESS ) &&
( Status != ERROR_MORE_DATA ) )
goto NukeClass;
if( Status == ERROR_MORE_DATA ) {
cchServerSize++;
szServer = malloc_w( cchServerSize );
if( szServer == NULL )
goto NukeClass;
Status = RegQueryValue(Key,szServerKey,szServer,&cchServerSize);
if( Status != ERROR_SUCCESS )
goto NukeClass;
}
if (!*szServer)
goto NukeClass;
if (GetProfileString(szEmbedding, szClass, EMPTY_STRING,
szOldLine, sizeof(szOldLine)))
{
for (lpForms=szOldLine, nCommas=0; ; lpForms=AnsiNext(lpForms))
{
while (*lpForms == ',')
{
*lpForms++ = '\0';
if (++nCommas == 3)
goto FoundForms;
}
if (!*lpForms)
goto DoDefaults;
}
FoundForms:
lpDesc = szOldLine;
}
else
{
DoDefaults:
lpDesc = szClassName;
lpForms = szPicture;
}
// we have a class, a classname, and a server, so its an le class
cchLineSize = strlen( lpDesc ) +
strlen( szClassName ) +
strlen( szServer ) +
strlen( lpForms ) +
3 +
1;
if( cchLineSize > sizeof( BufferForLine ) ) {
szLine = malloc_w( cchLineSize );
if( szLine == NULL )
goto NukeClass;
}
wsprintf(szLine, "%s,%s,%s,%s",
lpDesc, (LPSTR)szClassName, (LPSTR)szServer, lpForms);
WriteProfileString(szEmbedding, szClass, szLine);
if( Key != NULL ) {
RegCloseKey( Key );
}
if( szClassName != BufferForClassName ) {
free_w( szClassName );
}
if( szServer != BufferForServer ) {
free_w( szServer );
}
if( szLine != BufferForLine ) {
free_w( szLine );
}
return;
NukeClass:
/*
Don't nuke the class because someone else may use it!
*/
if( Key != NULL ) {
RegCloseKey( Key );
}
if( szClassName != BufferForClassName ) {
free_w( szClassName );
}
if( szServer != BufferForServer ) {
free_w( szServer );
}
if( szLine != BufferForLine ) {
free_w( szLine );
}
WriteProfileString(szEmbedding,szClass,NULL);
}
VOID
UpdateClassesRootSubKey(
IN LPSTR KeyName,
IN LPSTR Value
)
/*++
Routine Description:
Update a subkeys of HKEY_CLASSES_ROOT, based on the corresponding
key in the "embedding" section of win.ini.
The code below is an improved version of the function
"UpdateFromWinIni" extracted from Win 3.1 (shell\library\dbf.c).
Arguments:
KeyName - Name of the subkey to be updated
Value - The value associated to the key, that was already written
to the "embedding" section of win.ini.
Return Value:
None.
--*/
{
LPSTR szLine;
LPSTR lpClass,lpServer,lpClassName;
LPSTR lpT;
HKEY key = NULL;
HKEY key1 = NULL;
if( ( KeyName == NULL ) || ( Value == NULL ) ) {
return;
}
lpClass = KeyName;
szLine = Value;
if (!(lpClassName=strchr(szLine, ',')))
return;
// get the server name and null terminate the class name
if (!(lpServer=strchr(++lpClassName, ','))) {
return;
}
*lpServer++ = '\0';
// null terminate the server
if (!(lpT=strchr(lpServer, ','))) {
return;
}
*lpT++ = '\0';
// make sure the classname is nonblank
while (*lpClassName == ' ')
lpClassName++;
if (!*lpClassName)
return;
// make sure the server name is nonblank
while (*lpServer == ' ')
lpServer++;
if (!*lpServer)
return;
// we now have a valid entry
key = NULL;
if( ( RegCreateKey( HKEY_CLASSES_ROOT, lpClass, &key ) != ERROR_SUCCESS ) ||
( RegSetValue( key, NULL, REG_SZ, lpClassName, strlen( lpClassName ) ) != ERROR_SUCCESS ) ) {
if( key != NULL ) {
RegCloseKey( key );
}
return;
}
if( ( RegCreateKey( key, szServerKey, &key1 ) != ERROR_SUCCESS ) ||
( RegSetValue( key1, NULL, REG_SZ, lpServer, strlen( lpServer ) ) != ERROR_SUCCESS ) ) {
if( key != NULL ) {
RegCloseKey( key );
}
if( key1 != NULL ) {
RegCloseKey( key1 );
}
return;
}
RegCloseKey( key );
RegCloseKey( key1 );
}
VOID
SetLastTimeUpdated(
)
/*++
Routine Description:
Set the variable that contains the information of when the "embedding"
section of win.ini was last updated.
Arguments:
None.
Return Value:
None.
--*/
{
_LastTimeUpdated = GetTickCount();
}
BOOL
WasSectionRecentlyUpdated(
)
/*++
Routine Description:
Inform the caller whether the "embedding" section of win.ini
was recently updated ( less than 2 seconds ).
Arguments:
None.
Return Value:
BOOLEAN - Returns TRUE if the "embedding" section was updated less than
2 seconds ago.
--*/
{
DWORD Now;
Now = GetTickCount();
return( ( ( Now - _LastTimeUpdated ) < WININITIMEOUT ) ? TRUE : FALSE );
}
|