]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/nativewin.h
enum wxWebViewBackend has been removed.
[wxWidgets.git] / include / wx / nativewin.h
index 6571149755ff7a16d3ce1af89e1793bf723917d2..01007fdee67fd3d101dd00954c5bb50602fdaaab 100644 (file)
     typedef HWND wxNativeContainerWindowId;
     typedef HWND wxNativeContainerWindowHandle;
 #elif defined(__WXGTK__)
-    typedef unsigned long wxNativeContainerWindowId;
+    // GdkNativeWindow is guint32 under GDK/X11 and gpointer under GDK/WIN32
+    #ifdef __UNIX__
+        typedef unsigned long wxNativeContainerWindowId;
+    #else
+        typedef void *wxNativeContainerWindowId;
+    #endif
     typedef GdkWindow *wxNativeContainerWindowHandle;
 #else
     // no support for using native windows under this platform yet