1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/other-licenses/7zstub/src/7zip/Compress/LZ/LZOutWindow.cpp Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +// LZOutWindow.cpp 1.5 + 1.6 +#include "StdAfx.h" 1.7 + 1.8 +#include "../../../Common/Alloc.h" 1.9 +#include "LZOutWindow.h" 1.10 + 1.11 +void CLZOutWindow::Init(bool solid) 1.12 +{ 1.13 + if(!solid) 1.14 + COutBuffer::Init(); 1.15 + #ifdef _NO_EXCEPTIONS 1.16 + ErrorCode = S_OK; 1.17 + #endif 1.18 +} 1.19 + 1.20 +