]> git.saurik.com Git - wxWidgets.git/commitdiff
Reworked the undef stuff a little
authorBrian Macy <nobody@localhost>
Mon, 31 May 1999 19:24:12 +0000 (19:24 +0000)
committerBrian Macy <nobody@localhost>
Mon, 31 May 1999 19:24:12 +0000 (19:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/winundef.h
include/wx/wxprec.h

index 78a3fb53dfc90581c12628facd6bd4be8dc11379..59d8d7a35a4156cfe626485243ba3903e9972b75 100644 (file)
 #define _WX_WINUNDEF_H_
 
 // windows.h #defines the following identifiers which are also used in wxWin
+
+// GetCharWidth
+
 #ifdef GetCharWidth
     #undef GetCharWidth
 #endif
 
+inline BOOL  GetCharWidth(HDC dc, UINT first, UINT last, LPINT buffer)
+{
+#ifdef _UNICODE
+   return GetCharWidthW(dc, first, last, buffer);
+#else
+   return GetCharWidthA(dc, first, last, buffer);
+#endif
+}
+
+// FindWindow
+
 #ifdef FindWindow
     #undef FindWindow
 #endif
 
+#ifdef _UNICODE
+inline HWND FindWindow(LPCWSTR classname, LPCWSTR windowname)
+{
+   return FindWindowW(classname, windowname);
+}
+#else
+inline HWND FindWindow(LPCSTR classname, LPCSTR windowname)
+{
+   return FindWindowA(classname, windowname);
+}
+#endif
+
+// GetClassName
+
 #ifdef GetClassName
     #undef GetClassName
 #endif
 
+#ifdef _UNICODE
+inline int GetClassName(HWND h, LPWSTR classname, int maxcount)
+{
+   return GetClassNameW(h, classname, maxcount);
+}
+#else
+inline int GetClassName(HWND h, LPSTR classname, int maxcount)
+{
+   return GetClassNameA(h, classname, maxcount);
+}
+#endif
+
+// GetClassInfo
+
 #ifdef GetClassInfo
     #undef GetClassInfo
 #endif
 
+#ifdef _UNICODE
+inline BOOL GetClassInfo(HINSTANCE h, LPCWSTR name, LPWNDCLASSW winclass)
+{
+   return GetClassInfoW(h, name, winclass);
+}
+#else
+inline BOOL GetClassInfo(HINSTANCE h, LPCSTR name, LPWNDCLASSA winclass)
+{
+   return GetClassInfoA(h, name, winclass);
+}
+#endif
+
+// LoadAccelerators
+
 #ifdef LoadAccelerators
     #undef LoadAccelerators
 #endif
 
-#ifdef GetWindowProc
-    #undef GetWindowProc
+#ifdef _UNICODE
+inline HACCEL LoadAccelerators(HINSTANCE h, LPCWSTR name)
+{
+   return LoadAcceleratorsW(h, name);
+}
+#else
+inline HACCEL LoadAccelerators(HINSTANCE h, LPCSTR name)
+{
+   return LoadAcceleratorsA(h, name);
+}
 #endif
 
+
+// GetWindowProc... this isn't a Windows API function?!?!
+//ifdef GetWindowProc
+//   #undef GetWindowProc
+//endif
+
+
+// DrawText
+
 #ifdef DrawText
     #undef DrawText
 #endif
 
+#ifdef _UNICODE
+inline int DrawText(HDC h, LPCWSTR str, int count, LPRECT rect, UINT format)
+{
+   return DrawTextW(h, str, count, rect, format);
+}
+#else
+inline int DrawText(HDC h, LPCSTR str, int count, LPRECT rect, UINT format)
+{
+   return DrawTextA(h, str, count, rect, format);
+}
+#endif
+
+// StartDoc
+
 #ifdef StartDoc
     #undef StartDoc
 #endif
 
-#ifdef GetFirstChild
-    #undef GetFirstChild
+#ifdef _UNICODE
+inline int StartDoc(HDC h, CONST DOCINFOW* info)
+{
+   return StartDocW(h, info);
+}
+#else
+inline int StartDoc(HDC h, CONST DOCINFOA* info)
+{
+   return StartDocA(h, info);
+}
 #endif
 
-#ifdef GetNextChild
-    #undef GetNextChild
-#endif
+// GetFirstChild... not a Windows API Function!?!?!
+//ifdef GetFirstChild
+//   #undef GetFirstChild
+//endif
 
-#ifdef GetNextSibling
-    #undef GetNextSibling
-#endif
+//ifdef GetNextChild
+//    #undef GetNextChild
+//endif
+
+//ifdef GetNextSibling
+//    #undef GetNextSibling
+//endif
+
+// GetObject
 
 #ifdef GetObject
     #undef GetObject
 #endif
 
+inline int GetObject(HGDIOBJ h, int i, LPVOID buffer)
+{
+#ifdef _UNICODE
+   return GetObjectW(h, i, buffer);
+#else
+   return GetObjectA(h, i, buffer);
+#endif   
+}
+
 #endif // _WX_WINUNDEF_H_
index 045787256ea23c94aa79b06714381cd6705b21e0..80526f249bf110638b7006969d24fd844e1f096e 100644 (file)
 
 // include the wx definitions
 #ifdef WX_PRECOMP
-#include "wx/wx.h"
 
-// Comment this out if you don't mind slower compilation of the wxWindows
-// library
-#if !defined(__WXMAC__) && !defined(__SALFORDC__)
+#ifdef __WXMSW__
 #include <windows.h>
+#include "wx/msw/winundef.h"
 #endif
 
-#ifdef GetClassInfo
-#undef GetClassInfo
-#endif
-
-#ifdef GetClassName
-#undef GetClassName
-#endif
-
-#ifdef DrawText
-#undef DrawText
-#endif
-
-#ifdef GetCharWidth
-#undef GetCharWidth
-#endif
-
-#ifdef StartDoc
-#undef StartDoc
-#endif
-
-#ifdef FindWindow
-#undef FindWindow
-#endif
-
-#ifdef FindResource
-#undef FindResource
-#endif
+#include "wx/wx.h"
 
-#ifdef LoadAccelerators
-#undef LoadAccelerators
-#endif
 
 #endif // WX_PRECOMP