X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/371a5b4e62eb415107e045588f614fa49e866e78..2cf38c97836a8269a47847b73afcda347f863e04:/include/wx/msw/wince/missing.h diff --git a/include/wx/msw/wince/missing.h b/include/wx/msw/wince/missing.h index 9b94215811..08fb428b87 100644 --- a/include/wx/msw/wince/missing.h +++ b/include/wx/msw/wince/missing.h @@ -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 @@ -21,6 +29,13 @@ see also */ //////////////////////////////////////////////////////// +// 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_