ホーム › Storage.FileSystem › NtmsMountPriority
NtmsMountPriority
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| NTMS_PRIORITY_DEFAULT | 0 | 0x0 |
| NTMS_PRIORITY_HIGHEST | 15 | 0xF |
| NTMS_PRIORITY_HIGH | 7 | 0x7 |
| NTMS_PRIORITY_NORMAL | 0 | 0x0 |
| NTMS_PRIORITY_LOW | -7 | 0xFFFFFFF9 |
| NTMS_PRIORITY_LOWEST | -15 | 0xFFFFFFF1 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum NtmsMountPriority : int {
NTMS_PRIORITY_DEFAULT = 0,
NTMS_PRIORITY_HIGHEST = 15,
NTMS_PRIORITY_HIGH = 7,
NTMS_PRIORITY_NORMAL = 0,
NTMS_PRIORITY_LOW = -7,
NTMS_PRIORITY_LOWEST = -15
} NtmsMountPriority;public enum NtmsMountPriority : int
{
NTMS_PRIORITY_DEFAULT = 0,
NTMS_PRIORITY_HIGHEST = 15,
NTMS_PRIORITY_HIGH = 7,
NTMS_PRIORITY_NORMAL = 0,
NTMS_PRIORITY_LOW = -7,
NTMS_PRIORITY_LOWEST = -15,
}Public Enum NtmsMountPriority As Integer
NTMS_PRIORITY_DEFAULT = 0
NTMS_PRIORITY_HIGHEST = 15
NTMS_PRIORITY_HIGH = 7
NTMS_PRIORITY_NORMAL = 0
NTMS_PRIORITY_LOW = -7
NTMS_PRIORITY_LOWEST = -15
End Enumimport enum
class NtmsMountPriority(enum.IntEnum):
NTMS_PRIORITY_DEFAULT = 0
NTMS_PRIORITY_HIGHEST = 15
NTMS_PRIORITY_HIGH = 7
NTMS_PRIORITY_NORMAL = 0
NTMS_PRIORITY_LOW = -7
NTMS_PRIORITY_LOWEST = -15// NtmsMountPriority
pub const NTMS_PRIORITY_DEFAULT: i32 = 0;
pub const NTMS_PRIORITY_HIGHEST: i32 = 15;
pub const NTMS_PRIORITY_HIGH: i32 = 7;
pub const NTMS_PRIORITY_NORMAL: i32 = 0;
pub const NTMS_PRIORITY_LOW: i32 = -7;
pub const NTMS_PRIORITY_LOWEST: i32 = -15;// NtmsMountPriority
const (
NTMS_PRIORITY_DEFAULT int32 = 0
NTMS_PRIORITY_HIGHEST int32 = 15
NTMS_PRIORITY_HIGH int32 = 7
NTMS_PRIORITY_NORMAL int32 = 0
NTMS_PRIORITY_LOW int32 = -7
NTMS_PRIORITY_LOWEST int32 = -15
)const
NTMS_PRIORITY_DEFAULT = 0;
NTMS_PRIORITY_HIGHEST = 15;
NTMS_PRIORITY_HIGH = 7;
NTMS_PRIORITY_NORMAL = 0;
NTMS_PRIORITY_LOW = -7;
NTMS_PRIORITY_LOWEST = -15;// NtmsMountPriority
pub const NTMS_PRIORITY_DEFAULT: i32 = 0;
pub const NTMS_PRIORITY_HIGHEST: i32 = 15;
pub const NTMS_PRIORITY_HIGH: i32 = 7;
pub const NTMS_PRIORITY_NORMAL: i32 = 0;
pub const NTMS_PRIORITY_LOW: i32 = -7;
pub const NTMS_PRIORITY_LOWEST: i32 = -15;const
NTMS_PRIORITY_DEFAULT* = 0
NTMS_PRIORITY_HIGHEST* = 15
NTMS_PRIORITY_HIGH* = 7
NTMS_PRIORITY_NORMAL* = 0
NTMS_PRIORITY_LOW* = -7
NTMS_PRIORITY_LOWEST* = -15enum NtmsMountPriority : int {
NTMS_PRIORITY_DEFAULT = 0,
NTMS_PRIORITY_HIGHEST = 15,
NTMS_PRIORITY_HIGH = 7,
NTMS_PRIORITY_NORMAL = 0,
NTMS_PRIORITY_LOW = -7,
NTMS_PRIORITY_LOWEST = -15,
}#define global NTMS_PRIORITY_DEFAULT 0x0
#define global NTMS_PRIORITY_HIGHEST 0xF
#define global NTMS_PRIORITY_HIGH 0x7
#define global NTMS_PRIORITY_NORMAL 0x0
#define global NTMS_PRIORITY_LOW 0xFFFFFFF9
#define global NTMS_PRIORITY_LOWEST 0xFFFFFFF1