1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Halofreak1990 8f089dc2ab Added the current XFX directory tree.
WARNING!!! This revision cannot compile correctly. It is updated to reflect the many changes within the XFX project.
2010-12-04 16:14:34 +00:00

36 lines
813 B
C++

/********************************************************
* ThreadState.h *
* *
* XFX ThreadState enumeration definition file *
* Copyright © Halofreak1990. All Rights Reserved *
********************************************************/
#ifndef _THREADSTATE_
#define _THREADSTATE_
namespace System
{
namespace Threading
{
struct ThreadState
{
enum type
{
Running = 0x00000000,
StopRequested = 0x00000001,
SuspendRequested = 0x00000002,
Background = 0x00000004,
Unstarted = 0x00000008,
Stopped = 0x00000010,
WaitSleepJoin = 0x00000020,
Suspended = 0x00000040,
AbortRequested = 0x00000080,
Aborted = 0x00000100
};
};
typedef ThreadState::type ThreadState_t;
}
}
#endif //_THREADSTATE_