changeset 13904 | 99b265e0d1d0 |
parent 13903 | 5f819b90d479 |
child 13905 | b172a5d40eee |
13903:5f819b90d479 | 13904:99b265e0d1d0 |
---|---|
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 |