From: <dan...@us...> - 2009-04-20 19:22:42
|
Revision: 1246 http://cegcc.svn.sourceforge.net/cegcc/?rev=1246&view=rev Author: dannybackx Date: 2009-04-20 19:22:29 +0000 (Mon, 20 Apr 2009) Log Message: ----------- Add definitions, see bug #2750015. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/winbase.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2009-04-16 18:12:37 UTC (rev 1245) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2009-04-20 19:22:29 UTC (rev 1246) @@ -1,3 +1,8 @@ +2009-04-20 Johnny Willemsen <jwi...@re...> + + * include/winbase.h (CeSetThreadPriority, CeGetThreadPriority) : + Declare. + 2009-04-15 Danny Backx <dan...@us...> * include/winbase.h : Include inlined functions only from one file. Modified: trunk/cegcc/src/w32api/include/winbase.h =================================================================== --- trunk/cegcc/src/w32api/include/winbase.h 2009-04-16 18:12:37 UTC (rev 1245) +++ trunk/cegcc/src/w32api/include/winbase.h 2009-04-20 19:22:29 UTC (rev 1246) @@ -2207,6 +2207,11 @@ WINBASEAPI BOOL CeSetThreadQuantum(HANDLE hThread, DWORD dwTime); #endif +#if (_WIN32_WCE >= 0x500) +WINBASEAPI BOOL WINAPI CeSetThreadPriority(HANDLE hThread, int nPriority); +WINBASEAPI int WINAPI CeGetThreadPriority(HANDLE hThread); +#endif + #ifdef UNICODE typedef STARTUPINFOW STARTUPINFO,*LPSTARTUPINFO; typedef WIN32_FIND_DATAW WIN32_FIND_DATA,*PWIN32_FIND_DATA,*LPWIN32_FIND_DATA; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |