]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/missing.h
apptraits in line for carbon and mach-o
[wxWidgets.git] / include / wx / msw / wince / missing.h
index 9b942158110589ce42929b209e29d6d9ef1a4f8e..08fb428b8748c98c58bb942dac013e4abdcf9083 100644 (file)
 #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_