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

STORAGE_SET_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
PropertyStandardSet00x0
PropertyExistsSet10x1
PropertySetMaxDefined20x2

各言語での定義

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

typedef enum STORAGE_SET_TYPE : int {
    PropertyStandardSet = 0,
    PropertyExistsSet = 1,
    PropertySetMaxDefined = 2
} STORAGE_SET_TYPE;
public enum STORAGE_SET_TYPE : int
{
    PropertyStandardSet = 0,
    PropertyExistsSet = 1,
    PropertySetMaxDefined = 2,
}
Public Enum STORAGE_SET_TYPE As Integer
    PropertyStandardSet = 0
    PropertyExistsSet = 1
    PropertySetMaxDefined = 2
End Enum
import enum

class STORAGE_SET_TYPE(enum.IntEnum):
    PropertyStandardSet = 0
    PropertyExistsSet = 1
    PropertySetMaxDefined = 2
// STORAGE_SET_TYPE
pub const PropertyStandardSet: i32 = 0;
pub const PropertyExistsSet: i32 = 1;
pub const PropertySetMaxDefined: i32 = 2;
// STORAGE_SET_TYPE
const (
	PropertyStandardSet int32 = 0
	PropertyExistsSet int32 = 1
	PropertySetMaxDefined int32 = 2
)
const
  PropertyStandardSet = 0;
  PropertyExistsSet = 1;
  PropertySetMaxDefined = 2;
// STORAGE_SET_TYPE
pub const PropertyStandardSet: i32 = 0;
pub const PropertyExistsSet: i32 = 1;
pub const PropertySetMaxDefined: i32 = 2;
const
  PropertyStandardSet* = 0
  PropertyExistsSet* = 1
  PropertySetMaxDefined* = 2
enum STORAGE_SET_TYPE : int {
    PropertyStandardSet = 0,
    PropertyExistsSet = 1,
    PropertySetMaxDefined = 2,
}
#define global PropertyStandardSet   0x0
#define global PropertyExistsSet     0x1
#define global PropertySetMaxDefined 0x2