Win32 API 日本語リファレンス
ホームSystem.Diagnostics.Debug.Extensions › StorageKind

StorageKind

列挙型
基底型i4

メンバー 4

名前10進16進
StorageUnknown00x0
StorageRegister10x1
StorageRegisterRelative20x2
StorageRegisterRelativeIndirect30x3

各言語での定義

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

typedef enum StorageKind : int {
    StorageUnknown = 0,
    StorageRegister = 1,
    StorageRegisterRelative = 2,
    StorageRegisterRelativeIndirect = 3
} StorageKind;
public enum StorageKind : int
{
    StorageUnknown = 0,
    StorageRegister = 1,
    StorageRegisterRelative = 2,
    StorageRegisterRelativeIndirect = 3,
}
Public Enum StorageKind As Integer
    StorageUnknown = 0
    StorageRegister = 1
    StorageRegisterRelative = 2
    StorageRegisterRelativeIndirect = 3
End Enum
import enum

class StorageKind(enum.IntEnum):
    StorageUnknown = 0
    StorageRegister = 1
    StorageRegisterRelative = 2
    StorageRegisterRelativeIndirect = 3
// StorageKind
pub const StorageUnknown: i32 = 0;
pub const StorageRegister: i32 = 1;
pub const StorageRegisterRelative: i32 = 2;
pub const StorageRegisterRelativeIndirect: i32 = 3;
// StorageKind
const (
	StorageUnknown int32 = 0
	StorageRegister int32 = 1
	StorageRegisterRelative int32 = 2
	StorageRegisterRelativeIndirect int32 = 3
)
const
  StorageUnknown = 0;
  StorageRegister = 1;
  StorageRegisterRelative = 2;
  StorageRegisterRelativeIndirect = 3;
// StorageKind
pub const StorageUnknown: i32 = 0;
pub const StorageRegister: i32 = 1;
pub const StorageRegisterRelative: i32 = 2;
pub const StorageRegisterRelativeIndirect: i32 = 3;
const
  StorageUnknown* = 0
  StorageRegister* = 1
  StorageRegisterRelative* = 2
  StorageRegisterRelativeIndirect* = 3
enum StorageKind : int {
    StorageUnknown = 0,
    StorageRegister = 1,
    StorageRegisterRelative = 2,
    StorageRegisterRelativeIndirect = 3,
}
#define global StorageUnknown                  0x0
#define global StorageRegister                 0x1
#define global StorageRegisterRelative         0x2
#define global StorageRegisterRelativeIndirect 0x3