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