ホーム › System.Threading › AVRT_PRIORITY
AVRT_PRIORITY
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| AVRT_PRIORITY_VERYLOW | -2 | 0xFFFFFFFE |
| AVRT_PRIORITY_LOW | -1 | 0xFFFFFFFF |
| AVRT_PRIORITY_NORMAL | 0 | 0x0 |
| AVRT_PRIORITY_HIGH | 1 | 0x1 |
| AVRT_PRIORITY_CRITICAL | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum AVRT_PRIORITY : int {
AVRT_PRIORITY_VERYLOW = -2,
AVRT_PRIORITY_LOW = -1,
AVRT_PRIORITY_NORMAL = 0,
AVRT_PRIORITY_HIGH = 1,
AVRT_PRIORITY_CRITICAL = 2
} AVRT_PRIORITY;public enum AVRT_PRIORITY : int
{
AVRT_PRIORITY_VERYLOW = -2,
AVRT_PRIORITY_LOW = -1,
AVRT_PRIORITY_NORMAL = 0,
AVRT_PRIORITY_HIGH = 1,
AVRT_PRIORITY_CRITICAL = 2,
}Public Enum AVRT_PRIORITY As Integer
AVRT_PRIORITY_VERYLOW = -2
AVRT_PRIORITY_LOW = -1
AVRT_PRIORITY_NORMAL = 0
AVRT_PRIORITY_HIGH = 1
AVRT_PRIORITY_CRITICAL = 2
End Enumimport enum
class AVRT_PRIORITY(enum.IntEnum):
AVRT_PRIORITY_VERYLOW = -2
AVRT_PRIORITY_LOW = -1
AVRT_PRIORITY_NORMAL = 0
AVRT_PRIORITY_HIGH = 1
AVRT_PRIORITY_CRITICAL = 2// AVRT_PRIORITY
pub const AVRT_PRIORITY_VERYLOW: i32 = -2;
pub const AVRT_PRIORITY_LOW: i32 = -1;
pub const AVRT_PRIORITY_NORMAL: i32 = 0;
pub const AVRT_PRIORITY_HIGH: i32 = 1;
pub const AVRT_PRIORITY_CRITICAL: i32 = 2;// AVRT_PRIORITY
const (
AVRT_PRIORITY_VERYLOW int32 = -2
AVRT_PRIORITY_LOW int32 = -1
AVRT_PRIORITY_NORMAL int32 = 0
AVRT_PRIORITY_HIGH int32 = 1
AVRT_PRIORITY_CRITICAL int32 = 2
)const
AVRT_PRIORITY_VERYLOW = -2;
AVRT_PRIORITY_LOW = -1;
AVRT_PRIORITY_NORMAL = 0;
AVRT_PRIORITY_HIGH = 1;
AVRT_PRIORITY_CRITICAL = 2;// AVRT_PRIORITY
pub const AVRT_PRIORITY_VERYLOW: i32 = -2;
pub const AVRT_PRIORITY_LOW: i32 = -1;
pub const AVRT_PRIORITY_NORMAL: i32 = 0;
pub const AVRT_PRIORITY_HIGH: i32 = 1;
pub const AVRT_PRIORITY_CRITICAL: i32 = 2;const
AVRT_PRIORITY_VERYLOW* = -2
AVRT_PRIORITY_LOW* = -1
AVRT_PRIORITY_NORMAL* = 0
AVRT_PRIORITY_HIGH* = 1
AVRT_PRIORITY_CRITICAL* = 2enum AVRT_PRIORITY : int {
AVRT_PRIORITY_VERYLOW = -2,
AVRT_PRIORITY_LOW = -1,
AVRT_PRIORITY_NORMAL = 0,
AVRT_PRIORITY_HIGH = 1,
AVRT_PRIORITY_CRITICAL = 2,
}#define global AVRT_PRIORITY_VERYLOW 0xFFFFFFFE
#define global AVRT_PRIORITY_LOW 0xFFFFFFFF
#define global AVRT_PRIORITY_NORMAL 0x0
#define global AVRT_PRIORITY_HIGH 0x1
#define global AVRT_PRIORITY_CRITICAL 0x2