Hi,

the last commit to w32api/inc/winuser.h did not fix the GetProp function. (It only fixed RemoveProp and SetProp)

Attached is a patch to fix GetProp

Regards Stefan
Index: src/w32api/include/winuser.h
===================================================================
--- src/w32api/include/winuser.h	(Revision 1320)
+++ src/w32api/include/winuser.h	(Arbeitskopie)
@@ -3752,8 +3752,12 @@
 WINUSERAPI HWND WINAPI GetOpenClipboardWindow(void);
 WINUSERAPI HWND WINAPI GetParent(HWND);
 WINUSERAPI int WINAPI GetPriorityClipboardFormat(UINT*,int);
+#ifdef _WIN32_WCE
+WINUSERAPI HANDLE WINAPI GetProp(HWND, LPCWSTR);
+#else
 WINUSERAPI HANDLE WINAPI GetPropA(HWND,LPCSTR);
 WINUSERAPI HANDLE WINAPI GetPropW(HWND,LPCWSTR);
+#endif
 #if (_WIN32_WINNT >= 0x0501)
 WINUSERAPI UINT WINAPI GetRawInputBuffer(PRAWINPUT,PUINT,UINT);
 WINUSERAPI UINT WINAPI GetRawInputData(HRAWINPUT,UINT,LPVOID,PUINT,UINT);
@@ -4271,7 +4275,9 @@
 #define GetMenuString GetMenuStringW
 #define GetMessage GetMessageW
 #define GetMonitorInfo GetMonitorInfoW
+#ifndef _WIN32_WCE
 #define GetProp GetPropW
+#endif
 #define GetRawInputDeviceInfo GetRawInputDeviceInfoW
 #define GetTabbedTextExtent GetTabbedTextExtentW
 #define GetUserObjectInformation GetUserObjectInformationW
------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to