]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/winundef.h
gave default value of wxID_ANY to id parameter of wxStaticLine ctor as nobody uses...
[wxWidgets.git] / include / wx / msw / winundef.h
index 1f711c2c4691e2cd06df243612a7b60c5198a0e5..3d8a52e0200b40742fa86c3c53d3e834e3e11291 100644 (file)
     }
 #endif
 
+// CreateWindow
+
+#if defined(CreateWindow)
+    #undef CreateWindow
+
+    inline HWND CreateWindow(LPCTSTR lpClassName,
+                             LPCTSTR lpWndClass,
+                             DWORD dwStyle,
+                             int x, int y, int w, int h,
+                             HWND hWndParent,
+                             HMENU hMenu,
+                             HINSTANCE hInstance,
+                             LPVOID lpParam)
+    {
+        #ifdef _UNICODE
+            return CreateWindowW(lpClassName, lpWndClass, dwStyle, x, y, w, h,
+                                 hWndParent, hMenu, hInstance, lpParam);
+        #else
+            return CreateWindowA(lpClassName, lpWndClass, dwStyle, x, y, w, h,
+                                 hWndParent, hMenu, hInstance, lpParam);
+        #endif
+    }
+#endif
+
 // LoadMenu
 
 #ifdef LoadMenu