Play-/Source/ui_win32/DebuggerChildWnd.cpp
2015-05-06 01:27:59 -04:00

13 lines
189 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;
}