15 lines
206 B
C++
15 lines
206 B
C++
// LzOutWindow.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "LzOutWindow.h"
|
|
|
|
void CLzOutWindow::Init(bool solid) throw()
|
|
{
|
|
if (!solid)
|
|
COutBuffer::Init();
|
|
#ifdef _NO_EXCEPTIONS
|
|
ErrorCode = S_OK;
|
|
#endif
|
|
}
|