]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/winundef.h
*** empty log message ***
[wxWidgets.git] / include / wx / msw / winundef.h
index 96c5a06e8ec50f467809e4855c8dd5e9a1e3a11c..356bb06ab1109575ca43df7053ca6a9bc5564a5c 100644 (file)
     }
 #endif
 
+// GetFirstChild
+
+#ifdef GetFirstChild
+    #undef GetFirstChild
+    inline HWND GetFirstChild(HWND hwnd)
+    {
+        return GetTopWindow(hwnd);
+    }
+#endif
+
+// GetPrevSibling
+
+#ifdef GetPrevSibling
+    #undef GetPrevSibling
+    inline HWND GetPrevSibling(HWND hwnd)
+    {
+        return GetWindow(hwnd,GW_HWNDPREV);
+    }
+#endif
+
+// GetNextSibling
+
+#ifdef GetNextSibling
+    #undef GetNextSibling
+    inline HWND GetNextSibling(HWND hwnd)
+    {
+        return GetWindow(hwnd,GW_HWNDNEXT);
+    }
+#endif
+
 // For WINE
 
 #if defined(GetWindowStyle) || defined(__WXWINE__)