Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
ThreadPriority (Enums)
.
Summary
Summary:
Used with GetThreadPriority and SetThreadPriority .
C# Definition:
enum ThreadPriority
enum PInvokeThreadPriority
{
THREAD_MODE_BACKGROUND_BEGIN = 0x00010000,
THREAD_MODE_BACKGROUND_END = 0x00020000,
THREAD_PRIORITY_ABOVE_NORMAL = 1,
THREAD_PRIORITY_BELOW_NORMAL = -1,
THREAD_PRIORITY_HIGHEST = 2,
THREAD_PRIORITY_IDLE = -15,
THREAD_PRIORITY_LOWEST = -2,
THREAD_PRIORITY_NORMAL = 0,
THREAD_PRIORITY_TIME_CRITICAL = 15
}
}
VB.NET Definition:
Enum ThreadPriority
Enum PInvokeThreadPriority
THREAD_MODE_BACKGROUND_BEGIN = &H10000
THREAD_MODE_BACKGROUND_END = &H20000
THREAD_PRIORITY_ABOVE_NORMAL = 1
THREAD_PRIORITY_BELOW_NORMAL = -1
THREAD_PRIORITY_HIGHEST = 2
THREAD_PRIORITY_IDLE = -15
THREAD_PRIORITY_LOWEST = -2
THREAD_PRIORITY_NORMAL = 0
THREAD_PRIORITY_TIME_CRITICAL = 15
End Enum
Documentation
The GetThreadPriority API
4/1/2009 7:09:38 PM - anonymous
The SetThreadPriorityBoost API
3/16/2007 7:58:23 AM - -74.47.122.84
The GetThreadPriority API
4/1/2009 7:09:38 PM - anonymous
The SetThreadPriorityBoost API
3/16/2007 7:58:23 AM - -74.47.122.84
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!