Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6456e140
Commit
6456e140
authored
Jun 15, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jun 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add a few traces for SetupDecompressOrCopyFileW.
parent
a44506b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
misc.c
dlls/setupapi/misc.c
+14
-2
No files found.
dlls/setupapi/misc.c
View file @
6456e140
...
@@ -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
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment