Skip to content

TSdlMAllocFunc

A callback used to implement SdlMAlloc.

SDL will always ensure that the passed ASize is greater than 0.

Definition

Unit: Neslib.Sdl3.Additional

type TSdlMAllocFunc = function(ASize: NativeInt): Pointer; cdecl

Parameters

ASize: NativeInt : The size to allocate.

Returns

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

See Also

Remarks

It should be safe to call this callback from any thread.