michael@0: // CrossThreadProgress.cpp michael@0: michael@0: #include "StdAfx.h" michael@0: michael@0: #include "CrossThreadProgress.h" michael@0: michael@0: STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) michael@0: { michael@0: InSize = inSize; michael@0: OutSize = outSize; michael@0: ProgressEvent.Set(); michael@0: WaitEvent.Lock(); michael@0: return Result; michael@0: } michael@0: