mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 17:15:00 -06:00
15 lines
208 B
C++
Executable File
15 lines
208 B
C++
Executable File
// LzOutWindow.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "LzOutWindow.h"
|
|
|
|
void CLzOutWindow::Init(bool solid) throw()
|
|
{
|
|
if (!solid)
|
|
COutBuffer::Init();
|
|
#ifdef Z7_NO_EXCEPTIONS
|
|
ErrorCode = S_OK;
|
|
#endif
|
|
}
|