Play-/Source/win32ui/DebuggerChildWnd.cpp

12 lines
201 B
C++

#include "DebuggerChildWnd.h"
long CDebuggerChildWnd::OnSysCommand(unsigned int nCmd, LPARAM lParam)
{
switch(nCmd)
{
case SC_CLOSE:
Show(SW_HIDE);
return FALSE;
}
return TRUE;
}