Skip to content

TSdlReallocFunc

A callback used to implement SdlRealloc.

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

Definition

Unit: Neslib.Sdl3.Additional

type TSdlReallocFunc = function(AMem: Pointer; ASize: NativeInt): Pointer; cdecl

Parameters

AMem: Pointer : A pointer to allocated memory to reallocate, or nil.

ASize: NativeInt : The new size of the memory.

Returns

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

See Also

Remarks

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