Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cc8f18f9
Commit
cc8f18f9
authored
Jan 18, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy the implementation from SetupDefaultQueueCallbackA and make it
W.
parent
c7c55ff3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
2 deletions
+53
-2
queue.c
dlls/setupapi/queue.c
+53
-2
No files found.
dlls/setupapi/queue.c
View file @
cc8f18f9
...
...
@@ -1370,6 +1370,57 @@ UINT WINAPI SetupDefaultQueueCallbackA( PVOID context, UINT notification,
UINT
WINAPI
SetupDefaultQueueCallbackW
(
PVOID
context
,
UINT
notification
,
UINT_PTR
param1
,
UINT_PTR
param2
)
{
FIXME
(
"notification %d params %x,%x
\n
"
,
notification
,
param1
,
param2
);
return
FILEOP_SKIP
;
FILEPATHS_W
*
paths
=
(
FILEPATHS_W
*
)
param1
;
switch
(
notification
)
{
case
SPFILENOTIFY_STARTQUEUE
:
TRACE
(
"start queue
\n
"
);
return
TRUE
;
case
SPFILENOTIFY_ENDQUEUE
:
TRACE
(
"end queue
\n
"
);
return
0
;
case
SPFILENOTIFY_STARTSUBQUEUE
:
TRACE
(
"start subqueue %d count %d
\n
"
,
param1
,
param2
);
return
TRUE
;
case
SPFILENOTIFY_ENDSUBQUEUE
:
TRACE
(
"end subqueue %d
\n
"
,
param1
);
return
0
;
case
SPFILENOTIFY_STARTDELETE
:
TRACE
(
"start delete %s
\n
"
,
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_DOIT
;
case
SPFILENOTIFY_ENDDELETE
:
TRACE
(
"end delete %s
\n
"
,
debugstr_w
(
paths
->
Target
)
);
return
0
;
case
SPFILENOTIFY_DELETEERROR
:
ERR
(
"delete error %d %s
\n
"
,
paths
->
Win32Error
,
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_SKIP
;
case
SPFILENOTIFY_STARTRENAME
:
TRACE
(
"start rename %s -> %s
\n
"
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_DOIT
;
case
SPFILENOTIFY_ENDRENAME
:
TRACE
(
"end rename %s -> %s
\n
"
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
0
;
case
SPFILENOTIFY_RENAMEERROR
:
ERR
(
"rename error %d %s -> %s
\n
"
,
paths
->
Win32Error
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_SKIP
;
case
SPFILENOTIFY_STARTCOPY
:
TRACE
(
"start copy %s -> %s
\n
"
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_DOIT
;
case
SPFILENOTIFY_ENDCOPY
:
TRACE
(
"end copy %s -> %s
\n
"
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
0
;
case
SPFILENOTIFY_COPYERROR
:
ERR
(
"copy error %d %s -> %s
\n
"
,
paths
->
Win32Error
,
debugstr_w
(
paths
->
Source
),
debugstr_w
(
paths
->
Target
)
);
return
FILEOP_SKIP
;
case
SPFILENOTIFY_NEEDMEDIA
:
TRACE
(
"need media
\n
"
);
return
FILEOP_SKIP
;
default:
FIXME
(
"notification %d params %x,%x
\n
"
,
notification
,
param1
,
param2
);
break
;
}
return
0
;
}
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