mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
update dll export symbols
This commit is contained in:
parent
f1729040ec
commit
547e74494c
1665
dllexports/awtk.def
1665
dllexports/awtk.def
File diff suppressed because it is too large
Load Diff
@ -130,6 +130,7 @@ void tk_mem_dump(void);
|
||||
|
||||
/**
|
||||
* @method tk_mem_init
|
||||
* @export none
|
||||
* 初始化内存。
|
||||
*
|
||||
* @param {void*} buffer 内存地址。
|
||||
@ -141,6 +142,7 @@ ret_t tk_mem_init(void* buffer, uint32_t size);
|
||||
|
||||
/**
|
||||
* @method tk_mem_init_stage2
|
||||
* @export none
|
||||
* 初始化互斥和oom。
|
||||
*
|
||||
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
||||
|
@ -56,6 +56,7 @@ struct _mem_allocator_t {
|
||||
|
||||
/**
|
||||
* @method mem_allocator_alloc
|
||||
* @export none
|
||||
* 分配指定大小的内存。
|
||||
*
|
||||
* @param {mem_allocator_t*} allocator allocator对象。
|
||||
@ -75,6 +76,7 @@ static inline void* mem_allocator_alloc(mem_allocator_t* allocator, uint32_t siz
|
||||
|
||||
/**
|
||||
* @method mem_allocator_realloc
|
||||
* @export none
|
||||
* 重新分配指定大小的内存。
|
||||
*
|
||||
* @param {mem_allocator_t*} allocator allocator对象。
|
||||
@ -95,6 +97,7 @@ static inline void* mem_allocator_realloc(mem_allocator_t* allocator, void* ptr,
|
||||
|
||||
/**
|
||||
* @method mem_allocator_free
|
||||
* @export none
|
||||
* 释放内存。
|
||||
*
|
||||
* @param {mem_allocator_t*} allocator allocator对象。
|
||||
@ -110,6 +113,7 @@ static inline void mem_allocator_free(mem_allocator_t* allocator, void* ptr) {
|
||||
|
||||
/**
|
||||
* @method mem_allocator_dump
|
||||
* @export none
|
||||
* 显示内存信息,用于调试。
|
||||
*
|
||||
* @param {mem_allocator_t*} allocator allocator对象。
|
||||
@ -125,6 +129,7 @@ static inline ret_t mem_allocator_dump(mem_allocator_t* allocator) {
|
||||
|
||||
/**
|
||||
* @method mem_allocator_destroy
|
||||
* @export none
|
||||
* 销毁内存分配器。
|
||||
*
|
||||
* @param {mem_allocator_t*} allocator allocator对象。
|
||||
|
@ -30583,6 +30583,7 @@
|
||||
"annotation": {},
|
||||
"desc": "初始化内存。",
|
||||
"name": "tk_mem_init",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
@ -30593,6 +30594,7 @@
|
||||
"annotation": {},
|
||||
"desc": "初始化互斥和oom。",
|
||||
"name": "tk_mem_init_stage2",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
@ -30638,6 +30640,7 @@
|
||||
"annotation": {},
|
||||
"desc": "分配指定大小的内存。",
|
||||
"name": "mem_allocator_alloc",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "void*",
|
||||
"desc": "成功返回内存块的地址,失败返回NULL。"
|
||||
@ -30674,6 +30677,7 @@
|
||||
"annotation": {},
|
||||
"desc": "重新分配指定大小的内存。",
|
||||
"name": "mem_allocator_realloc",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "void*",
|
||||
"desc": "成功返回内存块的地址,失败返回NULL。"
|
||||
@ -30695,6 +30699,7 @@
|
||||
"annotation": {},
|
||||
"desc": "释放内存。",
|
||||
"name": "mem_allocator_free",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "void*",
|
||||
"desc": "成功返回内存块的地址,失败返回NULL。"
|
||||
@ -30711,6 +30716,7 @@
|
||||
"annotation": {},
|
||||
"desc": "显示内存信息,用于调试。",
|
||||
"name": "mem_allocator_dump",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
@ -30727,6 +30733,7 @@
|
||||
"annotation": {},
|
||||
"desc": "销毁内存分配器。",
|
||||
"name": "mem_allocator_destroy",
|
||||
"export": "none",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
|
Loading…
Reference in New Issue
Block a user