From: <ped...@us...> - 2006-11-12 20:45:27
|
Revision: 799 http://svn.sourceforge.net/cegcc/?rev=799&view=rev Author: pedroalves Date: 2006-11-12 12:44:45 -0800 (Sun, 12 Nov 2006) Log Message: ----------- * include/winnt.h (GetCurrentFiber, GetFiberData, GetCurrentFiber, GetFiberData, NtCurrentTeb): There is no Fiber support in Windows CE. Hide the functions. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/winnt.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 20:35:31 UTC (rev 798) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 20:44:45 UTC (rev 799) @@ -1,5 +1,11 @@ 2006-11-12 Pedro Alves <ped...@po...> + * include/winnt.h (GetCurrentFiber, GetFiberData, + GetCurrentFiber, GetFiberData, NtCurrentTeb): There is no Fiber + support in Windows CE. Hide the functions. + +2006-11-12 Pedro Alves <ped...@po...> + * include/commctrl.h (IMAGELISTDRAWPARAMS): There are no fState, Frame or crEffect members in CE version. (ImageList_Duplicate, ImageList_SetImageCount, ImageList_Copy, Modified: trunk/cegcc/src/w32api/include/winnt.h =================================================================== --- trunk/cegcc/src/w32api/include/winnt.h 2006-11-12 20:35:31 UTC (rev 798) +++ trunk/cegcc/src/w32api/include/winnt.h 2006-11-12 20:44:45 UTC (rev 799) @@ -3833,6 +3833,7 @@ (TypeBitMask), (ComparisonType))) #endif +#ifndef _WIN32_WCE PVOID GetCurrentFiber(void); PVOID GetFiberData(void); @@ -3924,6 +3925,7 @@ #endif /* __GNUC__ */ #endif /* _X86_ */ +#endif /* _WIN32_WCE */ #ifdef _WIN32_WCE typedef unsigned int size_t; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |