git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@1523 dfc29bdd-3216-0410-991c-e03cc46cb475

master
engineer_apple 2008-09-01 15:36:33 +00:00
parent e91198d3e6
commit 1f66702208
1 changed files with 3 additions and 0 deletions

View File

@ -678,6 +678,7 @@ bool CIrrDeviceWinCE::isWindowFocused() const
//! returns if window is minimized
bool CIrrDeviceWinCE::isWindowMinimized() const
{
#if 0
WINDOWPLACEMENT plc;
plc.length=sizeof(WINDOWPLACEMENT);
bool ret=false;
@ -685,6 +686,8 @@ bool CIrrDeviceWinCE::isWindowMinimized() const
ret=(plc.showCmd & SW_SHOWMINIMIZED);
_IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX;
return ret;
#endif
return false;
}