Foxit PDF SDK
FXMEM_Debugger Struct Reference

Memory debugger interface. All functions must be implemented. More...

Public Attributes

void(* OnAlloc )(FXMEM_FoxitMgr *pMgr, void *p, size_t size, int flags)
 A pointer type to an allocation-callback function. More...
 
void(* OnAllocDebug )(FXMEM_FoxitMgr *pMgr, void *p, size_t size, int flags, FX_LPCSTR file, int line)
 A pointer type to a debug-mode allocation-callback function. More...
 
void(* OnFree )(FXMEM_FoxitMgr *pMgr, void *p, int flags)
 A pointer type to a free-callback function. More...
 
void(* OnRealloc )(FXMEM_FoxitMgr *pMgr, void *old_p, void *new_p, size_t size, int flags)
 A pointer type to a reallocation-callback function. More...
 
void(* OnReallocDebug )(FXMEM_FoxitMgr *pMgr, void *old_p, void *new_p, size_t size, int flags, FX_LPCSTR file, int line)
 A pointer type to a debug-mode reallocation-callback function. More...
 
void(* OnTag )(FXMEM_FoxitMgr *pMgr, FX_LPCSTR tag)
 A pointer type to a tag-callback function. More...
 

Detailed Description

Memory debugger interface. All functions must be implemented.