Win32 API 日本語リファレンス
ホームSystem.Threading › AVRT_PRIORITY

AVRT_PRIORITY

列挙型
基底型i4

メンバー 5

名前10進16進
AVRT_PRIORITY_VERYLOW-20xFFFFFFFE
AVRT_PRIORITY_LOW-10xFFFFFFFF
AVRT_PRIORITY_NORMAL00x0
AVRT_PRIORITY_HIGH10x1
AVRT_PRIORITY_CRITICAL20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum 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