PFMemoryHooks
封装内存挂钩的结构。
语法
typedef struct PFMemoryHooks {
PFMemAllocFunction* alloc;
PFMemFreeFunction* free;
} PFMemoryHooks;
成员
alloc
PFMemAllocFunction*
自定义分配挂钩。
free
PFMemFreeFunction*
自定义免费挂钩。
备注
必须同时设置这两个挂钩。
要求
标头: PFPlatform.h