[WINESYNC] setupapi: Add a few traces for SetupDecompressOrCopyFileW.

wine commit id 6456e14055584db1d67238a5e70c3bc42c881695 by Andrew Nguyen <anguyen@codeweavers.com>
This commit is contained in:
winesync 2024-01-04 18:48:11 +01:00 committed by Hermès Bélusca-Maïto
parent 5ebd05ac40
commit ab69e27031
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 13 additions and 3 deletions

View file

@ -1706,10 +1706,20 @@ DWORD WINAPI SetupDecompressOrCopyFileW( PCWSTR source, PCWSTR target, PUINT typ
UINT comp;
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 (!type) comp = detect_compression_type( source );
else comp = *type;
if (!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)
{

View file

@ -5,4 +5,4 @@ files:
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
tags:
wine: a44506b563af5a1f852c3c26478adb75ffe01b38
wine: 6456e14055584db1d67238a5e70c3bc42c881695