X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a4fe894fea30f773876b7a7a2e55ece5ef7ac90..878d055d0b7e6e733e4545b7c83404685e543866:/include/wx/msw/wince/missing.h diff --git a/include/wx/msw/wince/missing.h b/include/wx/msw/wince/missing.h index d43caddfcb..08fb428b87 100644 --- a/include/wx/msw/wince/missing.h +++ b/include/wx/msw/wince/missing.h @@ -6,14 +6,22 @@ // Created: 16/11/2002 // RCS-ID: // Copyright: (c) KOAN SAS ( www.koansoftware.com ) -// Licence: wxWindows license -/////////////////////////////////////////////////////////////////////////////// +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// #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_