misc/libphysfs/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
author Wuzzy <almikes@aol.com>
Thu, 13 Apr 2017 17:42:57 +0200
changeset 12246 4c717a69a7a6
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Use smaller play sound icon in team editor

// 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;
}