WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
dbg_heap_memory.h
浏览该文件的文档.
1
9#ifndef __DBG_HEAP_MEMORY_H__
10#define __DBG_HEAP_MEMORY_H__
11#ifdef _DEBUG_HEAP_MEM_MGR
12
13#include "dbg_hash_tab.h"
14
15#ifdef __cplusplus
16#if __cplusplus
17extern "C" {
18#endif
19#endif
20
21uint32_t heap_mem_tab_init(void);
22uint32_t heap_mem_dump(void);
23void *heap_mem_malloc(uint32_t size, uint32_t master);
24void heap_mem_free(void *ptr);
25
26#ifdef __cplusplus
27#if __cplusplus
28}
29#endif
30#endif
31#endif
32#endif