2 * Setupapi cabinet routines
4 * Copyright 2003 Gregory M. Turner
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * Many useful traces are commented in code, uncomment them if you have
22 * trouble and run with WINEDEBUG=+setupapi
30 #include "wine/debug.h"
38 #include "setupapi_private.h"
40 #include "wine/unicode.h"
42 #include "msvcrt/fcntl.h"
43 #include "msvcrt/share.h"
45 #include "wine/debug.h"
47 OSVERSIONINFOW OsVersionInfo
;
49 static HINSTANCE CABINET_hInstance
= 0;
51 static HFDI (__cdecl
*sc_FDICreate
)(PFNALLOC
, PFNFREE
, PFNOPEN
,
52 PFNREAD
, PFNWRITE
, PFNCLOSE
, PFNSEEK
, int, PERF
);
54 static BOOL (__cdecl
*sc_FDICopy
)(HFDI
, char *, char *, int,
55 PFNFDINOTIFY
, PFNFDIDECRYPT
, void *);
57 static BOOL (__cdecl
*sc_FDIDestroy
)(HFDI
);
59 #define SC_HSC_A_MAGIC 0xACABFEED
63 PSP_FILE_CALLBACK_A msghandler
;
65 CHAR most_recent_cabinet_name
[MAX_PATH
];
66 } SC_HSC_A
, *PSC_HSC_A
;
68 #define SC_HSC_W_MAGIC 0x0CABFEED
72 PSP_FILE_CALLBACK_W msghandler
;
74 WCHAR most_recent_cabinet_name
[MAX_PATH
];
75 } SC_HSC_W
, *PSC_HSC_W
;
77 WINE_DEFAULT_DEBUG_CHANNEL(setupapi
);
79 static BOOL
LoadCABINETDll(void)
81 if (!CABINET_hInstance
) {
82 CABINET_hInstance
= LoadLibraryA("cabinet.dll");
83 if (CABINET_hInstance
) {
84 sc_FDICreate
= (void *)GetProcAddress(CABINET_hInstance
, "FDICreate");
85 sc_FDICopy
= (void *)GetProcAddress(CABINET_hInstance
, "FDICopy");
86 sc_FDIDestroy
= (void *)GetProcAddress(CABINET_hInstance
, "FDIDestroy");
89 ERR("load cabinet dll failed.\n");
96 static void UnloadCABINETDll(void)
98 if (CABINET_hInstance
) {
99 FreeLibrary(CABINET_hInstance
);
100 CABINET_hInstance
= 0;
104 /* FDICreate callbacks */
106 static void *sc_cb_alloc(ULONG cb
)
108 return HeapAlloc(GetProcessHeap(), 0, cb
);
111 static void sc_cb_free(void *pv
)
113 HeapFree(GetProcessHeap(), 0, pv
);
116 static INT_PTR
sc_cb_open(char *pszFile
, int oflag
, int pmode
)
118 DWORD creation
= 0, sharing
= 0;
121 SECURITY_ATTRIBUTES sa
;
123 /* TRACE("(pszFile == %s, oflag == %d, pmode == %d)\n", debugstr_a(pszFile), oflag, pmode); */
125 switch(oflag
& (_O_RDONLY
| _O_WRONLY
| _O_RDWR
)) {
127 ioflag
|= GENERIC_READ
;
130 ioflag
|= GENERIC_WRITE
;
133 ioflag
|= GENERIC_READ
& GENERIC_WRITE
;
135 case _O_WRONLY
| _O_RDWR
: /* hmmm.. */
136 ERR("_O_WRONLY & _O_RDWR in oflag?\n");
140 if (oflag
& _O_CREAT
) {
142 creation
= CREATE_NEW
;
143 else if (oflag
& _O_TRUNC
)
144 creation
= CREATE_ALWAYS
;
146 creation
= OPEN_ALWAYS
;
147 } else /* no _O_CREAT */ {
148 if (oflag
& _O_TRUNC
)
149 creation
= TRUNCATE_EXISTING
;
151 creation
= OPEN_EXISTING
;
154 switch( pmode
& 0x70 ) {
159 sharing
= FILE_SHARE_READ
;
162 sharing
= FILE_SHARE_WRITE
;
166 sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
169 ERR("<-- -1 (Unhandled pmode 0x%x)\n", pmode
);
173 if (oflag
& ~(_O_BINARY
| _O_TRUNC
| _O_EXCL
| _O_CREAT
| _O_RDWR
| _O_WRONLY
| _O_NOINHERIT
))
174 WARN("unsupported oflag 0x%04x\n",oflag
);
176 sa
.nLength
= sizeof( SECURITY_ATTRIBUTES
);
177 sa
.lpSecurityDescriptor
= NULL
;
178 sa
.bInheritHandle
= (ioflag
& _O_NOINHERIT
) ? FALSE
: TRUE
;
180 ret
= (INT_PTR
) CreateFileA(pszFile
, ioflag
, sharing
, &sa
, creation
, FILE_ATTRIBUTE_NORMAL
, NULL
);
182 /* TRACE("<-- %d\n", ret); */
187 static UINT
sc_cb_read(INT_PTR hf
, void *pv
, UINT cb
)
192 /* TRACE("(hf == %d, pv == ^%p, cb == %u)\n", hf, pv, cb); */
194 rslt
= ReadFile((HANDLE
) hf
, pv
, cb
, &num_read
, NULL
);
197 /* eof and failure both give "-1" return */
198 if ((! rslt
) || ((cb
> 0) && (num_read
== 0))) {
199 /* TRACE("<-- -1\n"); */
203 /* TRACE("<-- %lu\n", num_read); */
207 static UINT
sc_cb_write(INT_PTR hf
, void *pv
, UINT cb
)
212 /* TRACE("(hf == %d, pv == ^%p, cb == %u)\n", hf, pv, cb); */
214 if ( /* (rv = */ WriteFile((HANDLE
) hf
, pv
, cb
, &num_written
, NULL
) /* ) */
215 && (num_written
== cb
)) {
216 /* TRACE("<-- %lu\n", num_written); */
219 /* TRACE("rv == %d, num_written == %lu, cb == %u\n", rv, num_written,cb); */
220 /* TRACE("<-- -1\n"); */
225 static int sc_cb_close(INT_PTR hf
)
227 /* TRACE("(hf == %d)\n", hf); */
229 if (CloseHandle((HANDLE
) hf
))
235 static long sc_cb_lseek(INT_PTR hf
, long dist
, int seektype
)
239 /* TRACE("(hf == %d, dist == %ld, seektype == %d)\n", hf, dist, seektype); */
241 if (seektype
< 0 || seektype
> 2)
244 if (((ret
= SetFilePointer((HANDLE
) hf
, dist
, NULL
, seektype
)) != INVALID_SET_FILE_POINTER
) || !GetLastError()) {
245 /* TRACE("<-- %lu\n", ret); */
248 /* TRACE("<-- -1\n"); */
253 #define SIZEOF_MYSTERIO (MAX_PATH*3)
255 /* FDICopy callbacks */
257 static INT_PTR
sc_FNNOTIFY_A(FDINOTIFICATIONTYPE fdint
, PFDINOTIFICATION pfdin
)
259 FILE_IN_CABINET_INFO_A fici
;
265 CHAR mysterio
[SIZEOF_MYSTERIO
]; /* how big? undocumented! probably 256... */
267 memset(&(mysterio
[0]), 0, SIZEOF_MYSTERIO
);
269 TRACE("(fdint == %d, pfdin == ^%p)\n", fdint
, pfdin
);
271 if (pfdin
&& pfdin
->pv
&& (*((void **) pfdin
->pv
) == (void *)SC_HSC_A_MAGIC
))
272 phsc
= (PSC_HSC_A
) pfdin
->pv
;
274 ERR("pv %p is not an SC_HSC_A.\n", (pfdin
) ? pfdin
->pv
: NULL
);
279 case fdintCABINET_INFO
:
280 TRACE("Cabinet info notification\n");
281 /* TRACE(" Cabinet name: %s\n", debugstr_a(pfdin->psz1));
282 TRACE(" Cabinet disk: %s\n", debugstr_a(pfdin->psz2));
283 TRACE(" Cabinet path: %s\n", debugstr_a(pfdin->psz3));
284 TRACE(" Cabinet Set#: %d\n", pfdin->setID);
285 TRACE(" Cabinet Cab#: %d\n", pfdin->iCabinet); */
286 WARN("SPFILENOTIFY_CABINETINFO undocumented: guess implementation.\n");
287 ci
.CabinetFile
= &(phsc
->most_recent_cabinet_name
[0]);
288 ci
.CabinetPath
= pfdin
->psz3
;
289 ci
.DiskName
= pfdin
->psz2
;
290 ci
.SetId
= pfdin
->setID
;
291 ci
.CabinetNumber
= pfdin
->iCabinet
;
292 phsc
->msghandler(phsc
->context
, SPFILENOTIFY_CABINETINFO
, (UINT
) &ci
, 0);
294 case fdintPARTIAL_FILE
:
295 TRACE("Partial file notification\n");
296 /* TRACE(" Partial file name: %s\n", debugstr_a(pfdin->psz1)); */
299 TRACE("Copy file notification\n");
300 TRACE(" File name: %s\n", debugstr_a(pfdin
->psz1
));
301 /* TRACE(" File size: %ld\n", pfdin->cb);
302 TRACE(" File date: %u\n", pfdin->date);
303 TRACE(" File time: %u\n", pfdin->time);
304 TRACE(" File attr: %u\n", pfdin->attribs); */
305 fici
.NameInCabinet
= pfdin
->psz1
;
306 fici
.FileSize
= pfdin
->cb
;
308 fici
.DosDate
= pfdin
->date
;
309 fici
.DosTime
= pfdin
->time
;
310 fici
.DosAttribs
= pfdin
->attribs
;
311 memset(&(fici
.FullTargetName
[0]), 0, MAX_PATH
);
312 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_FILEINCABINET
,
313 (UINT
) &fici
, (UINT
) pfdin
->psz1
);
314 if (err
== FILEOP_DOIT
) {
315 TRACE(" Callback specified filename: %s\n", debugstr_a(&(fici
.FullTargetName
[0])));
316 if (!fici
.FullTargetName
[0]) {
317 WARN(" Empty return string causing abort.\n");
318 SetLastError(ERROR_PATH_NOT_FOUND
);
321 return sc_cb_open(&(fici
.FullTargetName
[0]), _O_BINARY
| _O_CREAT
| _O_WRONLY
, _S_IREAD
| _S_IWRITE
);
323 TRACE(" Callback skipped file.\n");
326 case fdintCLOSE_FILE_INFO
:
327 TRACE("Close file notification\n");
328 /* TRACE(" File name: %s\n", debugstr_a(pfdin->psz1));
329 TRACE(" Exec file? %s\n", (pfdin->cb) ? "Yes" : "No");
330 TRACE(" File hndl: %d\n", pfdin->hf); */
331 fp
.Source
= &(phsc
->most_recent_cabinet_name
[0]);
332 fp
.Target
= pfdin
->psz1
;
335 /* the following should be a fixme -- but it occurs too many times */
336 WARN("Should set file date/time/attribs (and execute files?)\n");
337 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_FILEEXTRACTED
, (UINT
) &fp
, 0);
338 if (sc_cb_close(pfdin
->hf
))
339 WARN("_close failed.\n");
345 case fdintNEXT_CABINET
:
346 TRACE("Next cabinet notification\n");
347 /* TRACE(" Cabinet name: %s\n", debugstr_a(pfdin->psz1));
348 TRACE(" Cabinet disk: %s\n", debugstr_a(pfdin->psz2));
349 TRACE(" Cabinet path: %s\n", debugstr_a(pfdin->psz3));
350 TRACE(" Cabinet Set#: %d\n", pfdin->setID);
351 TRACE(" Cabinet Cab#: %d\n", pfdin->iCabinet); */
352 ci
.CabinetFile
= pfdin
->psz1
;
353 ci
.CabinetPath
= pfdin
->psz3
;
354 ci
.DiskName
= pfdin
->psz2
;
355 ci
.SetId
= pfdin
->setID
;
356 ci
.CabinetNumber
= pfdin
->iCabinet
;
357 /* remember the new cabinet name */
358 strcpy(&(phsc
->most_recent_cabinet_name
[0]), pfdin
->psz1
);
359 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_NEEDNEWCABINET
, (UINT
) &ci
, (UINT
) &(mysterio
[0]));
365 /* some easy paranoia. no such carefulness exists on the wide API IIRC */
366 lstrcpynA(pfdin
->psz3
, &(mysterio
[0]), SIZEOF_MYSTERIO
);
371 FIXME("Unknown notification type %d.\n", fdint
);
376 static INT_PTR
sc_FNNOTIFY_W(FDINOTIFICATIONTYPE fdint
, PFDINOTIFICATION pfdin
)
378 FILE_IN_CABINET_INFO_W fici
;
385 WCHAR mysterio
[SIZEOF_MYSTERIO
]; /* how big? undocumented! */
386 WCHAR buf
[MAX_PATH
], buf2
[MAX_PATH
];
387 CHAR charbuf
[MAX_PATH
];
389 memset(&(mysterio
[0]), 0, SIZEOF_MYSTERIO
* sizeof(WCHAR
));
390 memset(&(buf
[0]), 0, MAX_PATH
* sizeof(WCHAR
));
391 memset(&(buf2
[0]), 0, MAX_PATH
* sizeof(WCHAR
));
392 memset(&(charbuf
[0]), 0, MAX_PATH
);
394 TRACE("(fdint == %d, pfdin == ^%p)\n", fdint
, pfdin
);
396 if (pfdin
&& pfdin
->pv
&& (*((void **) pfdin
->pv
) == (void *)SC_HSC_W_MAGIC
))
397 phsc
= (PSC_HSC_W
) pfdin
->pv
;
399 ERR("pv %p is not an SC_HSC_W.\n", (pfdin
) ? pfdin
->pv
: NULL
);
404 case fdintCABINET_INFO
:
405 TRACE("Cabinet info notification\n");
406 /* TRACE(" Cabinet name: %s\n", debugstr_a(pfdin->psz1));
407 TRACE(" Cabinet disk: %s\n", debugstr_a(pfdin->psz2));
408 TRACE(" Cabinet path: %s\n", debugstr_a(pfdin->psz3));
409 TRACE(" Cabinet Set#: %d\n", pfdin->setID);
410 TRACE(" Cabinet Cab#: %d\n", pfdin->iCabinet); */
411 WARN("SPFILENOTIFY_CABINETINFO undocumented: guess implementation.\n");
412 ci
.CabinetFile
= &(phsc
->most_recent_cabinet_name
[0]);
413 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz3
, -1, &(buf
[0]), MAX_PATH
);
414 if ((len
> MAX_PATH
) || (len
<= 1))
416 ci
.CabinetPath
= &(buf
[0]);
417 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz2
, -1, &(buf2
[0]), MAX_PATH
);
418 if ((len
> MAX_PATH
) || (len
<= 1))
420 ci
.DiskName
= &(buf2
[0]);
421 ci
.SetId
= pfdin
->setID
;
422 ci
.CabinetNumber
= pfdin
->iCabinet
;
423 phsc
->msghandler(phsc
->context
, SPFILENOTIFY_CABINETINFO
, (UINT
) &ci
, 0);
425 case fdintPARTIAL_FILE
:
426 TRACE("Partial file notification\n");
427 /* TRACE(" Partial file name: %s\n", debugstr_a(pfdin->psz1)); */
430 TRACE("Copy file notification\n");
431 TRACE(" File name: %s\n", debugstr_a(pfdin
->psz1
));
432 /* TRACE(" File size: %ld\n", pfdin->cb);
433 TRACE(" File date: %u\n", pfdin->date);
434 TRACE(" File time: %u\n", pfdin->time);
435 TRACE(" File attr: %u\n", pfdin->attribs); */
436 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz1
, -1, &(buf2
[0]), MAX_PATH
);
437 if ((len
> MAX_PATH
) || (len
<= 1))
439 fici
.NameInCabinet
= &(buf2
[0]);
440 fici
.FileSize
= pfdin
->cb
;
442 fici
.DosDate
= pfdin
->date
;
443 fici
.DosTime
= pfdin
->time
;
444 fici
.DosAttribs
= pfdin
->attribs
;
445 memset(&(fici
.FullTargetName
[0]), 0, MAX_PATH
* sizeof(WCHAR
));
446 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_FILEINCABINET
,
447 (UINT
) &fici
, (UINT
) pfdin
->psz1
);
448 if (err
== FILEOP_DOIT
) {
449 TRACE(" Callback specified filename: %s\n", debugstr_w(&(fici
.FullTargetName
[0])));
450 if (fici
.FullTargetName
[0]) {
451 len
= strlenW(&(fici
.FullTargetName
[0])) + 1;
452 if ((len
> MAX_PATH
) || (len
<= 1))
454 if (!WideCharToMultiByte(CP_ACP
, 0, &(fici
.FullTargetName
[0]), len
, &(charbuf
[0]), MAX_PATH
, 0, 0))
457 WARN("Empty buffer string caused abort.\n");
458 SetLastError(ERROR_PATH_NOT_FOUND
);
461 return sc_cb_open(&(charbuf
[0]), _O_BINARY
| _O_CREAT
| _O_WRONLY
, _S_IREAD
| _S_IWRITE
);
463 TRACE(" Callback skipped file.\n");
466 case fdintCLOSE_FILE_INFO
:
467 TRACE("Close file notification\n");
468 /* TRACE(" File name: %s\n", debugstr_a(pfdin->psz1));
469 TRACE(" Exec file? %s\n", (pfdin->cb) ? "Yes" : "No");
470 TRACE(" File hndl: %d\n", pfdin->hf); */
471 fp
.Source
= &(phsc
->most_recent_cabinet_name
[0]);
472 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz1
, -1, &(buf
[0]), MAX_PATH
);
473 if ((len
> MAX_PATH
) || (len
<= 1))
475 fp
.Target
= &(buf
[0]);
478 /* a valid fixme -- but occurs too many times */
479 /* FIXME("Should set file date/time/attribs (and execute files?)\n"); */
480 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_FILEEXTRACTED
, (UINT
) &fp
, 0);
481 if (sc_cb_close(pfdin
->hf
))
482 WARN("_close failed.\n");
488 case fdintNEXT_CABINET
:
489 TRACE("Next cabinet notification\n");
490 /* TRACE(" Cabinet name: %s\n", debugstr_a(pfdin->psz1));
491 TRACE(" Cabinet disk: %s\n", debugstr_a(pfdin->psz2));
492 TRACE(" Cabinet path: %s\n", debugstr_a(pfdin->psz3));
493 TRACE(" Cabinet Set#: %d\n", pfdin->setID);
494 TRACE(" Cabinet Cab#: %d\n", pfdin->iCabinet); */
495 /* remember the new cabinet name */
496 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz1
, -1, &(phsc
->most_recent_cabinet_name
[0]), MAX_PATH
);
497 if ((len
> MAX_PATH
) || (len
<= 1))
498 phsc
->most_recent_cabinet_name
[0] = '\0';
499 ci
.CabinetFile
= &(phsc
->most_recent_cabinet_name
[0]);
500 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz3
, -1, &(buf
[0]), MAX_PATH
);
501 if ((len
> MAX_PATH
) || (len
<= 1))
503 ci
.CabinetPath
= &(buf
[0]);
504 len
= 1 + MultiByteToWideChar(CP_ACP
, 0, pfdin
->psz2
, -1, &(buf2
[0]), MAX_PATH
);
505 if ((len
> MAX_PATH
) || (len
<= 1))
507 ci
.DiskName
= &(buf2
[0]);
508 ci
.SetId
= pfdin
->setID
;
509 ci
.CabinetNumber
= pfdin
->iCabinet
;
510 err
= phsc
->msghandler(phsc
->context
, SPFILENOTIFY_NEEDNEWCABINET
, (UINT
) &ci
, (UINT
) &(mysterio
[0]));
516 len
= strlenW(&(mysterio
[0])) + 1;
517 if ((len
> 255) || (len
<= 1))
519 if (!WideCharToMultiByte(CP_ACP
, 0, &(mysterio
[0]), len
, pfdin
->psz3
, 255, 0, 0))
525 FIXME("Unknown notification type %d.\n", fdint
);
530 /***********************************************************************
531 * SetupIterateCabinetA (SETUPAPI.@)
533 BOOL WINAPI
SetupIterateCabinetA(PCSTR CabinetFile
, DWORD Reserved
,
534 PSP_FILE_CALLBACK_A MsgHandler
, PVOID Context
)
539 CHAR pszCabinet
[MAX_PATH
], pszCabPath
[MAX_PATH
], *p
;
544 TRACE("(CabinetFile == %s, Reserved == %u, MsgHandler == ^%p, Context == ^%p)\n",
545 debugstr_a(CabinetFile
), Reserved
, MsgHandler
, Context
);
547 if (! LoadCABINETDll())
550 memset(&my_hsc
, 0, sizeof(SC_HSC_A
));
551 pszCabinet
[0] = '\0';
552 pszCabPath
[0] = '\0';
554 fpnsize
= strlen(CabinetFile
);
555 if (fpnsize
>= MAX_PATH
) {
556 SetLastError(ERROR_BAD_PATHNAME
);
560 fpnsize
= GetFullPathNameA(CabinetFile
, MAX_PATH
, &(pszCabPath
[0]), &p
);
561 if (fpnsize
> MAX_PATH
) {
562 SetLastError(ERROR_BAD_PATHNAME
);
567 strcpy(pszCabinet
, p
);
570 strcpy(pszCabinet
, CabinetFile
);
571 pszCabPath
[0] = '\0';
574 TRACE("path: %s, cabfile: %s\n", debugstr_a(pszCabPath
), debugstr_a(pszCabinet
));
576 /* remember the cabinet name */
577 strcpy(&(my_hsc
.most_recent_cabinet_name
[0]), pszCabinet
);
579 my_hsc
.magic
= SC_HSC_A_MAGIC
;
580 my_hsc
.msghandler
= MsgHandler
;
581 my_hsc
.context
= Context
;
582 my_hsc
.hfdi
= sc_FDICreate( sc_cb_alloc
, sc_cb_free
, sc_cb_open
, sc_cb_read
,
583 sc_cb_write
, sc_cb_close
, sc_cb_lseek
, cpuUNKNOWN
, &erf
);
585 if (!my_hsc
.hfdi
) return FALSE
;
587 ret
= ( sc_FDICopy(my_hsc
.hfdi
, pszCabinet
, pszCabPath
,
588 0, sc_FNNOTIFY_A
, NULL
, &my_hsc
) ) ? TRUE
: FALSE
;
590 sc_FDIDestroy(my_hsc
.hfdi
);
595 /***********************************************************************
596 * SetupIterateCabinetW (SETUPAPI.@)
598 BOOL WINAPI
SetupIterateCabinetW(PCWSTR CabinetFile
, DWORD Reserved
,
599 PSP_FILE_CALLBACK_W MsgHandler
, PVOID Context
)
601 CHAR pszCabinet
[MAX_PATH
], pszCabPath
[MAX_PATH
];
605 WCHAR pszCabPathW
[MAX_PATH
], *p
;
609 TRACE("(CabinetFile == %s, Reserved == %u, MsgHandler == ^%p, Context == ^%p)\n",
610 debugstr_w(CabinetFile
), Reserved
, MsgHandler
, Context
);
612 if (!LoadCABINETDll())
615 if (!CabinetFile
) return FALSE
;
617 memset(&my_hsc
, 0, sizeof(SC_HSC_W
));
619 fpnsize
= GetFullPathNameW(CabinetFile
, MAX_PATH
, pszCabPathW
, &p
);
620 if (fpnsize
> MAX_PATH
) {
621 SetLastError(ERROR_BAD_PATHNAME
);
626 strcpyW(my_hsc
.most_recent_cabinet_name
, p
);
628 len
= WideCharToMultiByte(CP_ACP
, 0, pszCabPathW
, -1, pszCabPath
,
630 if (!len
) return FALSE
;
632 strcpyW(my_hsc
.most_recent_cabinet_name
, CabinetFile
);
633 pszCabPath
[0] = '\0';
636 len
= WideCharToMultiByte(CP_ACP
, 0, my_hsc
.most_recent_cabinet_name
, -1,
637 pszCabinet
, MAX_PATH
, 0, 0);
638 if (!len
) return FALSE
;
640 TRACE("path: %s, cabfile: %s\n",
641 debugstr_a(pszCabPath
), debugstr_a(pszCabinet
));
643 my_hsc
.magic
= SC_HSC_W_MAGIC
;
644 my_hsc
.msghandler
= MsgHandler
;
645 my_hsc
.context
= Context
;
646 my_hsc
.hfdi
= sc_FDICreate( sc_cb_alloc
, sc_cb_free
, sc_cb_open
, sc_cb_read
,
647 sc_cb_write
, sc_cb_close
, sc_cb_lseek
, cpuUNKNOWN
, &erf
);
649 if (!my_hsc
.hfdi
) return FALSE
;
651 ret
= ( sc_FDICopy(my_hsc
.hfdi
, pszCabinet
, pszCabPath
,
652 0, sc_FNNOTIFY_W
, NULL
, &my_hsc
) ) ? TRUE
: FALSE
;
654 sc_FDIDestroy(my_hsc
.hfdi
);
659 /***********************************************************************
663 * hinstDLL [I] handle to the DLL's instance
665 * lpvReserved [I] reserved, must be NULL
672 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
675 case DLL_PROCESS_ATTACH
:
676 DisableThreadLibraryCalls(hinstDLL
);
677 OsVersionInfo
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFOW
);
678 if (!GetVersionExW(&OsVersionInfo
))
681 case DLL_PROCESS_DETACH
: