Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public enum ThreadPriority
  2. {
  3.     /*=========================================================================
  4.     ** Constants for thread priorities.
  5.     =========================================================================*/
  6.     Lowest = 0,
  7.     BelowNormal = 1,
  8.     Normal = 2,
  9.     AboveNormal = 3,
  10.     Highest = 4
  11.    
  12. }