ホーム › Storage.Imapi › PlatformId
PlatformId
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| PlatformX86 | 0 | 0x0 | Intel Pentium™ シリーズのチップセットです。このエントリは Windows オペレーティング システムを意味します。 |
| PlatformPowerPC | 1 | 0x1 | Apple PowerPC ファミリです。 |
| PlatformMac | 2 | 0x2 | Apple Macintosh ファミリです。 |
| PlatformEFI | 239 | 0xEF | EFI ファミリです。 |
公式ドキュメント
ブート イメージがサポートするオペレーティング システムのアーキテクチャの値を定義します
解説(Remarks)
ここで定義されていない値が他に存在する可能性があります。この列挙型を使用する側は、この一覧が有効な値のすべてであると想定しないでください。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum PlatformId : int {
PlatformX86 = 0,
PlatformPowerPC = 1,
PlatformMac = 2,
PlatformEFI = 239
} PlatformId;public enum PlatformId : int
{
PlatformX86 = 0,
PlatformPowerPC = 1,
PlatformMac = 2,
PlatformEFI = 239,
}Public Enum PlatformId As Integer
PlatformX86 = 0
PlatformPowerPC = 1
PlatformMac = 2
PlatformEFI = 239
End Enumimport enum
class PlatformId(enum.IntEnum):
PlatformX86 = 0
PlatformPowerPC = 1
PlatformMac = 2
PlatformEFI = 239// PlatformId
pub const PlatformX86: i32 = 0;
pub const PlatformPowerPC: i32 = 1;
pub const PlatformMac: i32 = 2;
pub const PlatformEFI: i32 = 239;// PlatformId
const (
PlatformX86 int32 = 0
PlatformPowerPC int32 = 1
PlatformMac int32 = 2
PlatformEFI int32 = 239
)const
PlatformX86 = 0;
PlatformPowerPC = 1;
PlatformMac = 2;
PlatformEFI = 239;// PlatformId
pub const PlatformX86: i32 = 0;
pub const PlatformPowerPC: i32 = 1;
pub const PlatformMac: i32 = 2;
pub const PlatformEFI: i32 = 239;const
PlatformX86* = 0
PlatformPowerPC* = 1
PlatformMac* = 2
PlatformEFI* = 239enum PlatformId : int {
PlatformX86 = 0,
PlatformPowerPC = 1,
PlatformMac = 2,
PlatformEFI = 239,
}#define global PlatformX86 0x0
#define global PlatformPowerPC 0x1
#define global PlatformMac 0x2
#define global PlatformEFI 0xEF