17 lines
199 B
C++
17 lines
199 B
C++
|
// LZOutWindow.cpp
|
||
|
|
||
|
#include "StdAfx.h"
|
||
|
|
||
|
#include "LZOutWindow.h"
|
||
|
|
||
|
void CLZOutWindow::Init(bool solid)
|
||
|
{
|
||
|
if(!solid)
|
||
|
COutBuffer::Init();
|
||
|
#ifdef _NO_EXCEPTIONS
|
||
|
ErrorCode = S_OK;
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
|