Copy the implementation from SetupDefaultQueueCallbackA and make it
W.
This commit is contained in:
parent
c7c55ff33a
commit
cc8f18f96f
|
@ -1370,6 +1370,57 @@ UINT WINAPI SetupDefaultQueueCallbackA( PVOID context, UINT notification,
|
||||||
UINT WINAPI SetupDefaultQueueCallbackW( PVOID context, UINT notification,
|
UINT WINAPI SetupDefaultQueueCallbackW( PVOID context, UINT notification,
|
||||||
UINT_PTR param1, UINT_PTR param2 )
|
UINT_PTR param1, UINT_PTR param2 )
|
||||||
{
|
{
|
||||||
FIXME( "notification %d params %x,%x\n", notification, param1, param2 );
|
FILEPATHS_W *paths = (FILEPATHS_W *)param1;
|
||||||
return FILEOP_SKIP;
|
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue