Skip to content

SdlCAlloc

Allocate a zero-initialized array using SDL's memory manager.

The memory returned by this function must be freed with SdlFree and not with Delphi's FreeMem.

If either of ANumElements or AElementSize is 0, they will both be set to 1.

Definition

Unit: Neslib.Sdl3.Additional

function SdlCAlloc(const ANumElements, AElementSize: NativeInt): Pointer; inline

Parameters

ANumElements: NativeInt : The number of elements in the array.

AElementSize: NativeInt : The size of each element of the array.

Returns

Pointer: A pointer to the allocated array, or nil if allocation failed.

See Also

Remarks

It is safe to call this method from any thread