xref: /aosp_15_r20/external/lzma/CPP/7zip/Compress/LzOutWindow.cpp (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // LzOutWindow.cpp
2 
3 #include "StdAfx.h"
4 
5 #include "LzOutWindow.h"
6 
Init(bool solid)7 void CLzOutWindow::Init(bool solid) throw()
8 {
9   if (!solid)
10     COutBuffer::Init();
11   #ifdef Z7_NO_EXCEPTIONS
12   ErrorCode = S_OK;
13   #endif
14 }
15