1 // CrossThreadProgress.cpp 2 3 #include "StdAfx.h" 4 5 #include "CrossThreadProgress.h" 6 SetRatioInfo(const UInt64 * inSize,const UInt64 * outSize)7STDMETHODIMP 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 16