Files
SmartThreadPool/SmartThreadPool/SLExt.cs
T
Ami Bar 48de8aca66 Changed build macros
SILVERLIGHT changed to _SILVERLIGHT
WindowsCE changed to _WINDOWS_CE
_MONO was added
2009-12-24 01:39:59 +02:00

17 lines
216 B
C#

#if _SILVERLIGHT
using System.Threading;
namespace Amib.Threading
{
public enum ThreadPriority
{
Lowest,
BelowNormal,
Normal,
AboveNormal,
Highest,
}
}
#endif