mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 09:00:25 +00:00
13 lines
189 B
C++
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;
|
|
}
|