Commit 34ed1e37 authored by Erich E. Hoover's avatar Erich E. Hoover Committed by Alexandre Julliard

qmgr: Call the notification callback when jobs complete.

parent 1edda7a3
......@@ -1280,6 +1280,8 @@ void processJob(BackgroundCopyJobImpl *job)
if (done)
{
transitionJobState(job, BG_JOB_STATE_QUEUED, BG_JOB_STATE_TRANSFERRED);
if (job->callback && (job->notify_flags & BG_NOTIFY_JOB_TRANSFERRED))
IBackgroundCopyCallback2_JobTransferred(job->callback, (IBackgroundCopyJob*)&job->IBackgroundCopyJob3_iface);
return;
}
......
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