add more priority constants, priority functions
parent
08fe32a268
commit
e60d8a49c1
|
@ -189,6 +189,16 @@ TYPEDEF: FILE_NOTIFY_INFORMATION* PFILE_NOTIFY_INFORMATION
|
||||||
: FILE_MAP_WRITE 2 ;
|
: FILE_MAP_WRITE 2 ;
|
||||||
: FILE_MAP_COPY 1 ;
|
: FILE_MAP_COPY 1 ;
|
||||||
|
|
||||||
|
: THREAD_MODE_BACKGROUND_BEGIN HEX: 10000 ; inline
|
||||||
|
: THREAD_MODE_BACKGROUND_END HEX: 20000 ; inline
|
||||||
|
: THREAD_PRIORITY_ABOVE_NORMAL 1 ; inline
|
||||||
|
: THREAD_PRIORITY_BELOW_NORMAL -1 ; inline
|
||||||
|
: THREAD_PRIORITY_HIGHEST 2 ; inline
|
||||||
|
: THREAD_PRIORITY_IDLE -15 ; inline
|
||||||
|
: THREAD_PRIORITY_LOWEST -2 ; inline
|
||||||
|
: THREAD_PRIORITY_NORMAL 0 ; inline
|
||||||
|
: THREAD_PRIORITY_TIME_CRITICAL 15 ; inline
|
||||||
|
|
||||||
C-STRUCT: OVERLAPPED
|
C-STRUCT: OVERLAPPED
|
||||||
{ "int" "internal" }
|
{ "int" "internal" }
|
||||||
{ "int" "internal-high" }
|
{ "int" "internal-high" }
|
||||||
|
@ -998,7 +1008,7 @@ FUNCTION: HMODULE GetModuleHandleW ( LPCWSTR lpModuleName ) ;
|
||||||
! FUNCTION: GetNumberOfConsoleMouseButtons
|
! FUNCTION: GetNumberOfConsoleMouseButtons
|
||||||
! FUNCTION: GetOEMCP
|
! FUNCTION: GetOEMCP
|
||||||
FUNCTION: BOOL GetOverlappedResult ( HANDLE hFile, LPOVERLAPPED lpOverlapped, LPDWORD lpNumberOfBytesTransferred, BOOL bWait ) ;
|
FUNCTION: BOOL GetOverlappedResult ( HANDLE hFile, LPOVERLAPPED lpOverlapped, LPDWORD lpNumberOfBytesTransferred, BOOL bWait ) ;
|
||||||
! FUNCTION: GetPriorityClass
|
FUNCTION: DWORD GetPriorityClass ( HANDLE hProcess ) ;
|
||||||
! FUNCTION: GetPrivateProfileIntA
|
! FUNCTION: GetPrivateProfileIntA
|
||||||
! FUNCTION: GetPrivateProfileIntW
|
! FUNCTION: GetPrivateProfileIntW
|
||||||
! FUNCTION: GetPrivateProfileSectionA
|
! FUNCTION: GetPrivateProfileSectionA
|
||||||
|
@ -1065,8 +1075,8 @@ FUNCTION: UINT GetSystemWindowsDirectoryW ( LPTSTR lpBuffer, UINT uSize ) ;
|
||||||
! FUNCTION: GetThreadContext
|
! FUNCTION: GetThreadContext
|
||||||
! FUNCTION: GetThreadIOPendingFlag
|
! FUNCTION: GetThreadIOPendingFlag
|
||||||
! FUNCTION: GetThreadLocale
|
! FUNCTION: GetThreadLocale
|
||||||
! FUNCTION: GetThreadPriority
|
FUNCTION: int GetThreadPriority ( HANDLE hThread ) ;
|
||||||
! FUNCTION: GetThreadPriorityBoost
|
FUNCTION: BOOL GetThreadPriorityBoost ( HANDLE hThread, PBOOL pDisablePriorityBoost ) ;
|
||||||
! FUNCTION: GetThreadSelectorEntry
|
! FUNCTION: GetThreadSelectorEntry
|
||||||
! FUNCTION: GetThreadTimes
|
! FUNCTION: GetThreadTimes
|
||||||
! FUNCTION: GetTickCount
|
! FUNCTION: GetTickCount
|
||||||
|
@ -1437,9 +1447,9 @@ FUNCTION: BOOL SetHandleInformation ( HANDLE hObject, DWORD dwMask, DWORD dwFlag
|
||||||
! FUNCTION: SetMailslotInfo
|
! FUNCTION: SetMailslotInfo
|
||||||
! FUNCTION: SetMessageWaitingIndicator
|
! FUNCTION: SetMessageWaitingIndicator
|
||||||
! FUNCTION: SetNamedPipeHandleState
|
! FUNCTION: SetNamedPipeHandleState
|
||||||
! FUNCTION: SetPriorityClass
|
FUNCTION: BOOL SetPriorityClass ( HANDLE hProcess, DWORD dwPriorityClass ) ;
|
||||||
! FUNCTION: SetProcessAffinityMask
|
! FUNCTION: SetProcessAffinityMask
|
||||||
! FUNCTION: SetProcessPriorityBoost
|
FUNCTION: BOOL SetProcessPriorityBoost ( HANDLE hProcess, BOOL disablePriorityBoost ) ;
|
||||||
! FUNCTION: SetProcessShutdownParameters
|
! FUNCTION: SetProcessShutdownParameters
|
||||||
! FUNCTION: SetProcessWorkingSetSize
|
! FUNCTION: SetProcessWorkingSetSize
|
||||||
! FUNCTION: SetStdHandle
|
! FUNCTION: SetStdHandle
|
||||||
|
@ -1454,8 +1464,8 @@ FUNCTION: BOOL SetHandleInformation ( HANDLE hObject, DWORD dwMask, DWORD dwFlag
|
||||||
! FUNCTION: SetThreadExecutionState
|
! FUNCTION: SetThreadExecutionState
|
||||||
! FUNCTION: SetThreadIdealProcessor
|
! FUNCTION: SetThreadIdealProcessor
|
||||||
! FUNCTION: SetThreadLocale
|
! FUNCTION: SetThreadLocale
|
||||||
! FUNCTION: SetThreadPriority
|
FUNCTION: BOOL SetThreadPriority ( HANDLE hThread, int nPriority ) ;
|
||||||
! FUNCTION: SetThreadPriorityBoost
|
FUNCTION: BOOL SetThreadPriorityBoost ( HANDLE hThread, BOOL disablePriorityBoost ) ;
|
||||||
! FUNCTION: SetThreadUILanguage
|
! FUNCTION: SetThreadUILanguage
|
||||||
! FUNCTION: SetTimerQueueTimer
|
! FUNCTION: SetTimerQueueTimer
|
||||||
! FUNCTION: SetTimeZoneInformation
|
! FUNCTION: SetTimeZoneInformation
|
||||||
|
|
Loading…
Reference in New Issue