Send capture progress over an active target control connection

This commit is contained in:
baldurk
2017-12-29 14:31:18 +00:00
parent ed98925eef
commit 559656e0f6
11 changed files with 132 additions and 11 deletions
@@ -1113,6 +1113,12 @@ void LiveCapture::connectionThreadEntry()
});
}
if(msg.type == TargetControlMessageType::CaptureProgress)
{
float progress = msg.capProgress;
GUIInvoke::call([this, progress]() {});
}
if(msg.type == TargetControlMessageType::NewCapture)
{
uint32_t capID = msg.newCapture.captureId;