Win32 API 日本語リファレンス
ホームStorage.FileSystem › NtmsMountPriority

NtmsMountPriority

列挙型
基底型i4

メンバー 6

名前10進16進
NTMS_PRIORITY_DEFAULT00x0
NTMS_PRIORITY_HIGHEST150xF
NTMS_PRIORITY_HIGH70x7
NTMS_PRIORITY_NORMAL00x0
NTMS_PRIORITY_LOW-70xFFFFFFF9
NTMS_PRIORITY_LOWEST-150xFFFFFFF1

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = -15
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,
}
#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