Skip to content

SdlMAlloc

Allocate uninitialized memory using SDL's memory manager.

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

If ASize is 0, it will be set to 1.

If you want to allocate memory aligned to a specific alignment, consider using SdlAlignedAlloc.

Definition

Unit: Neslib.Sdl3.Additional

function SdlMAlloc(const ASize: NativeInt): Pointer; inline

Parameters

ASize: NativeInt : The size to allocate.

Returns

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

See Also

Remarks

It is safe to call this method from any thread