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

INSTANCE_INFORMATION_CLASS

列挙型
基底型i4

メンバー 4

名前10進16進
InstanceBasicInformation00x0
InstancePartialInformation10x1
InstanceFullInformation20x2
InstanceAggregateStandardInformation30x3

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum INSTANCE_INFORMATION_CLASS : int {
    InstanceBasicInformation = 0,
    InstancePartialInformation = 1,
    InstanceFullInformation = 2,
    InstanceAggregateStandardInformation = 3
} INSTANCE_INFORMATION_CLASS;
public enum INSTANCE_INFORMATION_CLASS : int
{
    InstanceBasicInformation = 0,
    InstancePartialInformation = 1,
    InstanceFullInformation = 2,
    InstanceAggregateStandardInformation = 3,
}
Public Enum INSTANCE_INFORMATION_CLASS As Integer
    InstanceBasicInformation = 0
    InstancePartialInformation = 1
    InstanceFullInformation = 2
    InstanceAggregateStandardInformation = 3
End Enum
import enum

class INSTANCE_INFORMATION_CLASS(enum.IntEnum):
    InstanceBasicInformation = 0
    InstancePartialInformation = 1
    InstanceFullInformation = 2
    InstanceAggregateStandardInformation = 3
// INSTANCE_INFORMATION_CLASS
pub const InstanceBasicInformation: i32 = 0;
pub const InstancePartialInformation: i32 = 1;
pub const InstanceFullInformation: i32 = 2;
pub const InstanceAggregateStandardInformation: i32 = 3;
// INSTANCE_INFORMATION_CLASS
const (
	InstanceBasicInformation int32 = 0
	InstancePartialInformation int32 = 1
	InstanceFullInformation int32 = 2
	InstanceAggregateStandardInformation int32 = 3
)
const
  InstanceBasicInformation = 0;
  InstancePartialInformation = 1;
  InstanceFullInformation = 2;
  InstanceAggregateStandardInformation = 3;
// INSTANCE_INFORMATION_CLASS
pub const InstanceBasicInformation: i32 = 0;
pub const InstancePartialInformation: i32 = 1;
pub const InstanceFullInformation: i32 = 2;
pub const InstanceAggregateStandardInformation: i32 = 3;
const
  InstanceBasicInformation* = 0
  InstancePartialInformation* = 1
  InstanceFullInformation* = 2
  InstanceAggregateStandardInformation* = 3
enum INSTANCE_INFORMATION_CLASS : int {
    InstanceBasicInformation = 0,
    InstancePartialInformation = 1,
    InstanceFullInformation = 2,
    InstanceAggregateStandardInformation = 3,
}
#define global InstanceBasicInformation             0x0
#define global InstancePartialInformation           0x1
#define global InstanceFullInformation              0x2
#define global InstanceAggregateStandardInformation 0x3