CeSetThreadQuantum (Windows Embedded CE 6.0)
1/6/2010
This function sets the time, in milliseconds, required for the specified thread to run.
BOOL CeSetThreadQuantum( HANDLE hThread, DWORD dwTime );
- hThread
-
[in] Handle to a thread.
- dwTime
-
[in] Specifies the time, in milliseconds (ms), required for the thread to run.
Every thread in the system is allotted a time defined by the OEM, unless it is reset by a call to this function. The default value is 100 ms. If zero is specified, the thread runs to completion.
TRUE indicates success. FALSE indicates failure. To get extended error information, call GetLastError.
Note: