comparison: other-licenses/7zstub/src/7zip/Archive/Common/CrossThreadProgress.cpp
other-licenses/7zstub/src/7zip/Archive/Common/CrossThreadProgress.cpp
- branch
- TOR_BUG_9701
- changeset 8
- 97036ab72558
equal
deleted
inserted
replaced
|
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 |