ホーム › Networking.BackgroundIntelligentTransferService › BG_JOB_PRIORITY
BG_JOB_PRIORITY
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| BG_JOB_PRIORITY_FOREGROUND | 0 | 0x0 |
| BG_JOB_PRIORITY_HIGH | 1 | 0x1 |
| BG_JOB_PRIORITY_NORMAL | 2 | 0x2 |
| BG_JOB_PRIORITY_LOW | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum BG_JOB_PRIORITY : int {
BG_JOB_PRIORITY_FOREGROUND = 0,
BG_JOB_PRIORITY_HIGH = 1,
BG_JOB_PRIORITY_NORMAL = 2,
BG_JOB_PRIORITY_LOW = 3
} BG_JOB_PRIORITY;public enum BG_JOB_PRIORITY : int
{
BG_JOB_PRIORITY_FOREGROUND = 0,
BG_JOB_PRIORITY_HIGH = 1,
BG_JOB_PRIORITY_NORMAL = 2,
BG_JOB_PRIORITY_LOW = 3,
}Public Enum BG_JOB_PRIORITY As Integer
BG_JOB_PRIORITY_FOREGROUND = 0
BG_JOB_PRIORITY_HIGH = 1
BG_JOB_PRIORITY_NORMAL = 2
BG_JOB_PRIORITY_LOW = 3
End Enumimport enum
class BG_JOB_PRIORITY(enum.IntEnum):
BG_JOB_PRIORITY_FOREGROUND = 0
BG_JOB_PRIORITY_HIGH = 1
BG_JOB_PRIORITY_NORMAL = 2
BG_JOB_PRIORITY_LOW = 3// BG_JOB_PRIORITY
pub const BG_JOB_PRIORITY_FOREGROUND: i32 = 0;
pub const BG_JOB_PRIORITY_HIGH: i32 = 1;
pub const BG_JOB_PRIORITY_NORMAL: i32 = 2;
pub const BG_JOB_PRIORITY_LOW: i32 = 3;// BG_JOB_PRIORITY
const (
BG_JOB_PRIORITY_FOREGROUND int32 = 0
BG_JOB_PRIORITY_HIGH int32 = 1
BG_JOB_PRIORITY_NORMAL int32 = 2
BG_JOB_PRIORITY_LOW int32 = 3
)const
BG_JOB_PRIORITY_FOREGROUND = 0;
BG_JOB_PRIORITY_HIGH = 1;
BG_JOB_PRIORITY_NORMAL = 2;
BG_JOB_PRIORITY_LOW = 3;// BG_JOB_PRIORITY
pub const BG_JOB_PRIORITY_FOREGROUND: i32 = 0;
pub const BG_JOB_PRIORITY_HIGH: i32 = 1;
pub const BG_JOB_PRIORITY_NORMAL: i32 = 2;
pub const BG_JOB_PRIORITY_LOW: i32 = 3;const
BG_JOB_PRIORITY_FOREGROUND* = 0
BG_JOB_PRIORITY_HIGH* = 1
BG_JOB_PRIORITY_NORMAL* = 2
BG_JOB_PRIORITY_LOW* = 3enum BG_JOB_PRIORITY : int {
BG_JOB_PRIORITY_FOREGROUND = 0,
BG_JOB_PRIORITY_HIGH = 1,
BG_JOB_PRIORITY_NORMAL = 2,
BG_JOB_PRIORITY_LOW = 3,
}#define global BG_JOB_PRIORITY_FOREGROUND 0x0
#define global BG_JOB_PRIORITY_HIGH 0x1
#define global BG_JOB_PRIORITY_NORMAL 0x2
#define global BG_JOB_PRIORITY_LOW 0x3