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

MFSampleAllocatorUsage

列挙型
基底型i4

メンバー 3

名前10進16進
MFSampleAllocatorUsage_UsesProvidedAllocator00x0
MFSampleAllocatorUsage_UsesCustomAllocator10x1
MFSampleAllocatorUsage_DoesNotAllocate20x2

各言語での定義

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

typedef enum MFSampleAllocatorUsage : int {
    MFSampleAllocatorUsage_UsesProvidedAllocator = 0,
    MFSampleAllocatorUsage_UsesCustomAllocator = 1,
    MFSampleAllocatorUsage_DoesNotAllocate = 2
} MFSampleAllocatorUsage;
public enum MFSampleAllocatorUsage : int
{
    MFSampleAllocatorUsage_UsesProvidedAllocator = 0,
    MFSampleAllocatorUsage_UsesCustomAllocator = 1,
    MFSampleAllocatorUsage_DoesNotAllocate = 2,
}
Public Enum MFSampleAllocatorUsage As Integer
    MFSampleAllocatorUsage_UsesProvidedAllocator = 0
    MFSampleAllocatorUsage_UsesCustomAllocator = 1
    MFSampleAllocatorUsage_DoesNotAllocate = 2
End Enum
import enum

class MFSampleAllocatorUsage(enum.IntEnum):
    MFSampleAllocatorUsage_UsesProvidedAllocator = 0
    MFSampleAllocatorUsage_UsesCustomAllocator = 1
    MFSampleAllocatorUsage_DoesNotAllocate = 2
// MFSampleAllocatorUsage
pub const MFSampleAllocatorUsage_UsesProvidedAllocator: i32 = 0;
pub const MFSampleAllocatorUsage_UsesCustomAllocator: i32 = 1;
pub const MFSampleAllocatorUsage_DoesNotAllocate: i32 = 2;
// MFSampleAllocatorUsage
const (
	MFSampleAllocatorUsage_UsesProvidedAllocator int32 = 0
	MFSampleAllocatorUsage_UsesCustomAllocator int32 = 1
	MFSampleAllocatorUsage_DoesNotAllocate int32 = 2
)
const
  MFSampleAllocatorUsage_UsesProvidedAllocator = 0;
  MFSampleAllocatorUsage_UsesCustomAllocator = 1;
  MFSampleAllocatorUsage_DoesNotAllocate = 2;
// MFSampleAllocatorUsage
pub const MFSampleAllocatorUsage_UsesProvidedAllocator: i32 = 0;
pub const MFSampleAllocatorUsage_UsesCustomAllocator: i32 = 1;
pub const MFSampleAllocatorUsage_DoesNotAllocate: i32 = 2;
const
  MFSampleAllocatorUsage_UsesProvidedAllocator* = 0
  MFSampleAllocatorUsage_UsesCustomAllocator* = 1
  MFSampleAllocatorUsage_DoesNotAllocate* = 2
enum MFSampleAllocatorUsage : int {
    MFSampleAllocatorUsage_UsesProvidedAllocator = 0,
    MFSampleAllocatorUsage_UsesCustomAllocator = 1,
    MFSampleAllocatorUsage_DoesNotAllocate = 2,
}
#define global MFSampleAllocatorUsage_UsesProvidedAllocator 0x0
#define global MFSampleAllocatorUsage_UsesCustomAllocator   0x1
#define global MFSampleAllocatorUsage_DoesNotAllocate       0x2