mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
13 lines
201 B
C++
13 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;
|
||
|
}
|