other-licenses/7zstub/src/7zip/Archive/Common/CrossThreadProgress.cpp

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // CrossThreadProgress.cpp
     3 #include "StdAfx.h"
     5 #include "CrossThreadProgress.h"
     7 STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
     8 {
     9   InSize = inSize;
    10   OutSize = outSize;
    11   ProgressEvent.Set();
    12   WaitEvent.Lock();
    13   return Result;
    14 }

mercurial