Win32 API 日本語リファレンス
ホームMedia.MediaFoundation › EAllocationType

EAllocationType

列挙型
基底型i4

メンバー 4

名前10進16進
eAllocationTypeDynamic00x0
eAllocationTypeRT10x1
eAllocationTypePageable20x2
eAllocationTypeIgnore30x3

各言語での定義

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

typedef enum EAllocationType : int {
    eAllocationTypeDynamic = 0,
    eAllocationTypeRT = 1,
    eAllocationTypePageable = 2,
    eAllocationTypeIgnore = 3
} EAllocationType;
public enum EAllocationType : int
{
    eAllocationTypeDynamic = 0,
    eAllocationTypeRT = 1,
    eAllocationTypePageable = 2,
    eAllocationTypeIgnore = 3,
}
Public Enum EAllocationType As Integer
    eAllocationTypeDynamic = 0
    eAllocationTypeRT = 1
    eAllocationTypePageable = 2
    eAllocationTypeIgnore = 3
End Enum
import enum

class EAllocationType(enum.IntEnum):
    eAllocationTypeDynamic = 0
    eAllocationTypeRT = 1
    eAllocationTypePageable = 2
    eAllocationTypeIgnore = 3
// EAllocationType
pub const eAllocationTypeDynamic: i32 = 0;
pub const eAllocationTypeRT: i32 = 1;
pub const eAllocationTypePageable: i32 = 2;
pub const eAllocationTypeIgnore: i32 = 3;
// EAllocationType
const (
	eAllocationTypeDynamic int32 = 0
	eAllocationTypeRT int32 = 1
	eAllocationTypePageable int32 = 2
	eAllocationTypeIgnore int32 = 3
)
const
  eAllocationTypeDynamic = 0;
  eAllocationTypeRT = 1;
  eAllocationTypePageable = 2;
  eAllocationTypeIgnore = 3;
// EAllocationType
pub const eAllocationTypeDynamic: i32 = 0;
pub const eAllocationTypeRT: i32 = 1;
pub const eAllocationTypePageable: i32 = 2;
pub const eAllocationTypeIgnore: i32 = 3;
const
  eAllocationTypeDynamic* = 0
  eAllocationTypeRT* = 1
  eAllocationTypePageable* = 2
  eAllocationTypeIgnore* = 3
enum EAllocationType : int {
    eAllocationTypeDynamic = 0,
    eAllocationTypeRT = 1,
    eAllocationTypePageable = 2,
    eAllocationTypeIgnore = 3,
}
#define global eAllocationTypeDynamic  0x0
#define global eAllocationTypeRT       0x1
#define global eAllocationTypePageable 0x2
#define global eAllocationTypeIgnore   0x3