diff -r 000000000000 -r 6474c204b198 other-licenses/7zstub/src/7zip/Compress/LZ/LZOutWindow.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/other-licenses/7zstub/src/7zip/Compress/LZ/LZOutWindow.cpp Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,17 @@ +// LZOutWindow.cpp + +#include "StdAfx.h" + +#include "../../../Common/Alloc.h" +#include "LZOutWindow.h" + +void CLZOutWindow::Init(bool solid) +{ + if(!solid) + COutBuffer::Init(); + #ifdef _NO_EXCEPTIONS + ErrorCode = S_OK; + #endif +} + +