[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'LazGLib2' (#lcl)

TGMemVTable

Declaration

Source position: lazglib2.pas line 2988

type TGMemVTable = record

  malloc: function(

  

  n_bytes: gsize

):gpointer;

  realloc: function(

  

  mem: gpointer;

  n_bytes: gsize

):gpointer;

  free: procedure(

  

  mem: gpointer

);

  calloc: function(

  

  n_blocks: gsize;

  n_block_bytes: gsize

):gpointer;

  try_malloc: function(

  

  n_bytes: gsize

):gpointer;

  try_realloc: function(

  

  mem: gpointer;

  n_bytes: gsize

):gpointer;

end;