DxAlloc

指定のサイズのメモリを確保する

nothrow @nogc extern (C++, DxLib) extern
void*
DxAlloc
(
size_t AllocSize
,
const(char)* File = null
,
int Line = -1
)

Parameters

AllocSize size_t

確保するメモリのサイズ( 単位:byte )

File const(char)*

DxAllocを呼んだソースファイル名( デバッグ用 )

Line int

DxAllocを呼んだソースファイル中の行番号( デバッグ用 )

Return Value

Type: void*

null:メモリの確保失敗 NULL以外:確保したメモリ領域の先頭アドレス

Meta