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

REFS_SMR_VOLUME_GC_METHOD

列挙型
基底型i4

メンバー 3

名前10進16進
SmrGcMethodCompaction10x1
SmrGcMethodCompression20x2
SmrGcMethodRotation30x3

各言語での定義

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

typedef enum REFS_SMR_VOLUME_GC_METHOD : int {
    SmrGcMethodCompaction = 1,
    SmrGcMethodCompression = 2,
    SmrGcMethodRotation = 3
} REFS_SMR_VOLUME_GC_METHOD;
public enum REFS_SMR_VOLUME_GC_METHOD : int
{
    SmrGcMethodCompaction = 1,
    SmrGcMethodCompression = 2,
    SmrGcMethodRotation = 3,
}
Public Enum REFS_SMR_VOLUME_GC_METHOD As Integer
    SmrGcMethodCompaction = 1
    SmrGcMethodCompression = 2
    SmrGcMethodRotation = 3
End Enum
import enum

class REFS_SMR_VOLUME_GC_METHOD(enum.IntEnum):
    SmrGcMethodCompaction = 1
    SmrGcMethodCompression = 2
    SmrGcMethodRotation = 3
// REFS_SMR_VOLUME_GC_METHOD
pub const SmrGcMethodCompaction: i32 = 1;
pub const SmrGcMethodCompression: i32 = 2;
pub const SmrGcMethodRotation: i32 = 3;
// REFS_SMR_VOLUME_GC_METHOD
const (
	SmrGcMethodCompaction int32 = 1
	SmrGcMethodCompression int32 = 2
	SmrGcMethodRotation int32 = 3
)
const
  SmrGcMethodCompaction = 1;
  SmrGcMethodCompression = 2;
  SmrGcMethodRotation = 3;
// REFS_SMR_VOLUME_GC_METHOD
pub const SmrGcMethodCompaction: i32 = 1;
pub const SmrGcMethodCompression: i32 = 2;
pub const SmrGcMethodRotation: i32 = 3;
const
  SmrGcMethodCompaction* = 1
  SmrGcMethodCompression* = 2
  SmrGcMethodRotation* = 3
enum REFS_SMR_VOLUME_GC_METHOD : int {
    SmrGcMethodCompaction = 1,
    SmrGcMethodCompression = 2,
    SmrGcMethodRotation = 3,
}
#define global SmrGcMethodCompaction  0x1
#define global SmrGcMethodCompression 0x2
#define global SmrGcMethodRotation    0x3