misc/libphysfs/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
author unc0rr
Sat, 15 Sep 2018 20:42:02 +0200
branch0.9.24
changeset 13779 c384117f90eb
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Fix SetAmmoTexts not working in stats-only mode

// CrossThreadProgress.cpp

#include "StdAfx.h"

#include "CrossThreadProgress.h"

STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
{
  InSize = inSize;
  OutSize = outSize;
  ProgressEvent.Set();
  WaitEvent.Lock();
  return Result;
}