From: <dan...@us...> - 2007-01-31 19:50:39
|
Revision: 869 http://svn.sourceforge.net/cegcc/?rev=869&view=rev Author: dannybackx Date: 2007-01-31 11:50:37 -0800 (Wed, 31 Jan 2007) Log Message: ----------- Change submitted by Nuno Lucas (see http://msdn2.microsoft.com/en-us/library/ms961241.aspx). The current declaration for MsgWaitForMultipleObjects is the same as on standard windows, but on Windows CE it's a define wrapper for MsgWaitForMultiplesObjectsEx Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/winuser.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-01-20 16:45:06 UTC (rev 868) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-01-31 19:50:37 UTC (rev 869) @@ -1,3 +1,9 @@ +2007-01-31 Nuno Lucas <nt...@gm...> + + * include/winuser.h : Define MsgWaitForMultipleObjects as a macro that + calls MsgWaitForMultipleObjectsEx as described on MSDN. + + 2006-12-18 Pedro Alves <ped...@po...> * include/winnt.h (_M_ARM, ARM): Remove. Modified: trunk/cegcc/src/w32api/include/winuser.h =================================================================== --- trunk/cegcc/src/w32api/include/winuser.h 2007-01-20 16:45:06 UTC (rev 868) +++ trunk/cegcc/src/w32api/include/winuser.h 2007-01-31 19:50:37 UTC (rev 869) @@ -3834,8 +3834,13 @@ #endif WINUSERAPI void WINAPI mouse_event(DWORD,DWORD,DWORD,DWORD,ULONG_PTR); WINUSERAPI BOOL WINAPI MoveWindow(HWND,int,int,int,int,BOOL); +WINUSERAPI DWORD WINAPI MsgWaitForMultipleObjectsEx(DWORD,CONST HANDLE*,DWORD,DWORD,DWORD); +#ifdef _WIN32_WCE +#define MsgWaitForMultipleObjects(c,h,wa,ms,m) \ + MsgWaitForMultipleObjectsEx(c,h,ms,m,0) +#else WINUSERAPI DWORD WINAPI MsgWaitForMultipleObjects(DWORD,CONST HANDLE*,BOOL,DWORD,DWORD); -WINUSERAPI DWORD WINAPI MsgWaitForMultipleObjectsEx(DWORD,CONST HANDLE*,DWORD,DWORD,DWORD); +#endif #if (WINVER >= 0x0500) WINUSERAPI void WINAPI NotifyWinEvent(DWORD,HWND,LONG,LONG); #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |