misc/libphysfs/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
changeset 13881 99b265e0d1d0
parent 13880 5f819b90d479
child 13882 b172a5d40eee
equal deleted inserted replaced
13880:5f819b90d479 13881:99b265e0d1d0
     1 // CrossThreadProgress.cpp
       
     2 
       
     3 #include "StdAfx.h"
       
     4 
       
     5 #include "CrossThreadProgress.h"
       
     6 
       
     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 }
       
    15