Introduction
Units
Class Hierarchy
Classes, Interfaces, Objects and Records
Types
Variables
Constants
Functions and Procedures
Identifiers
allegro5
type ALLEGRO_MEMORY_INTERFACE = record
Used to define the memory management functions.
mi_malloc: function(n: AL_SIZE_T; line: AL_INT; const afile, func: AL_STR): AL_POINTER; CDECL;
mi_free: procedure(ptr: AL_POINTER; line: AL_INT; const afile, func: AL_STR); CDECL;
mi_realloc: function(ptr: AL_POINTER; n: AL_SIZE_T; line: AL_INT; const afile, func: AL_STR): AL_POINTER; CDECL;
mi_calloc: function(n, count: AL_SIZE_T; line: AL_INT; const afile, func: AL_STR): AL_POINTER; CDECL;