Play-/Source/win32ui/DebuggerChildWnd.cpp

13 lines
201 B
C++
Raw Normal View History

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