Some WinCE fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-07-10 21:14:50 +00:00
parent fc10daf37c
commit 7f0586ef60
7 changed files with 254 additions and 278 deletions

View File

@@ -12,8 +12,16 @@
#ifndef _WX_CE_MISSING_H_
#define _WX_CE_MISSING_H_
BOOL IsIconic( HWND hWnd )
{
// Probably not right...
#if 0
long style = GetWindowLong(hWnd, GWL_STYLE);
return ((style & WS_MINIMIZE) == 0);
#endif
return FALSE;
}
#include "wx/msw/private.h"
/*
Most of these are in MSVC++6.0 <wx\wince\winuser.h>
@@ -21,6 +29,13 @@ see also <wx\msw\gnuwin32\winresrc.h>
*/
////////////////////////////////////////////////////////
// JACS: I've commented these out in order to start from
// scratch. I don't think we should simply add styles,
// classes etc. when we don't know if they're supported
// by WinCE libraries.
#if 0
/*
* Extended Window Styles
*/
@@ -134,6 +149,8 @@ CallWindowProcW(
#define CallWindowProc CallWindowProcA
#endif // !UNICODE
#endif
////////////////////////////////////////////////////////
#endif // _WX_CE_MISSING_H_