comparison: other-licenses/7zstub/src/7zip/Compress/LZ/LZOutWindow.cpp
other-licenses/7zstub/src/7zip/Compress/LZ/LZOutWindow.cpp
- branch
- TOR_BUG_9701
- changeset 8
- 97036ab72558
equal
deleted
inserted
replaced
|
1 // LZOutWindow.cpp |
|
2 |
|
3 #include "StdAfx.h" |
|
4 |
|
5 #include "../../../Common/Alloc.h" |
|
6 #include "LZOutWindow.h" |
|
7 |
|
8 void CLZOutWindow::Init(bool solid) |
|
9 { |
|
10 if(!solid) |
|
11 COutBuffer::Init(); |
|
12 #ifdef _NO_EXCEPTIONS |
|
13 ErrorCode = S_OK; |
|
14 #endif |
|
15 } |
|
16 |
|
17 |