Commit 6456e140 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

setupapi: Add a few traces for SetupDecompressOrCopyFileW.

parent a44506b5
...@@ -1474,6 +1474,8 @@ static UINT CALLBACK decompress_or_copy_callback( PVOID context, UINT notificati ...@@ -1474,6 +1474,8 @@ static UINT CALLBACK decompress_or_copy_callback( PVOID context, UINT notificati
if (context_info->has_extracted) if (context_info->has_extracted)
return FILEOP_ABORT; return FILEOP_ABORT;
TRACE("Requesting extraction of cabinet file %s\n",
wine_dbgstr_w(info->NameInCabinet));
strcpyW( info->FullTargetName, context_info->target ); strcpyW( info->FullTargetName, context_info->target );
context_info->has_extracted = 1; context_info->has_extracted = 1;
return FILEOP_DOIT; return FILEOP_DOIT;
...@@ -1537,10 +1539,20 @@ DWORD WINAPI SetupDecompressOrCopyFileW( PCWSTR source, PCWSTR target, PUINT typ ...@@ -1537,10 +1539,20 @@ DWORD WINAPI SetupDecompressOrCopyFileW( PCWSTR source, PCWSTR target, PUINT typ
UINT comp; UINT comp;
DWORD ret = ERROR_INVALID_PARAMETER; DWORD ret = ERROR_INVALID_PARAMETER;
TRACE("(%s, %s, %p)\n", debugstr_w(source), debugstr_w(target), type);
if (!source || !target) return ERROR_INVALID_PARAMETER; if (!source || !target) return ERROR_INVALID_PARAMETER;
if (!type) comp = detect_compression_type( source ); if (!type)
else comp = *type; {
comp = detect_compression_type( source );
TRACE("Detected compression type %u\n", comp);
}
else
{
comp = *type;
TRACE("Using specified compression type %u\n", comp);
}
switch (comp) switch (comp)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment