Source position: sqlite3.inc line 369
type sqlite3_mem_methods = record |
xMalloc: function( |
size: cint |
):pointer; |
xFree: procedure( |
p: pointer |
); |
xRealloc: function( |
p: pointer; |
size: cint |
):pointer; |
xSize: function( |
p: pointer |
):cint; |
xRoundup: function( |
size: cint |
):cint; |
xInit: function: cint; |
xShutdown: procedure( |
p: pointer |
); |
pAppData: pointer; |
end; |