update docs

This commit is contained in:
lixianjing 2020-06-09 07:07:26 +08:00
parent c165966480
commit 95342ee00d
3 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# 最新动态
* 2020/06/09
* 增加 dll 导出函数(感谢俊杰提供补丁)。
* 完善 app_conf 的注释(感谢瑞安提供补丁)。
* 2020/06/08
* 优化圆角矩形的抗锯齿效果(感谢智明提供补丁)。

View File

@ -36,6 +36,10 @@ ret_t app_conf_set_instance(object_t* obj) {
return RET_OK;
}
object_t* app_conf_get_instance(void) {
return s_conf;
}
ret_t app_conf_save(void) {
ret_t ret = RET_FAIL;
return_value_if_fail(s_conf != NULL && s_conf_lock != NULL, RET_BAD_PARAMS);

View File

@ -40,7 +40,7 @@ BEGIN_C_DECLS
/**
* @method app_conf_set_instance
*
* app_conf实例
*
* @annotation ["static"]
*
@ -50,6 +50,16 @@ BEGIN_C_DECLS
*/
ret_t app_conf_set_instance(object_t* obj);
/**
* @method app_conf_get_instance
* app_conf实例
*
* @annotation ["static"]
*
* @return {object_t*} app_conf实例
*/
object_t* app_conf_get_instance(void);
/**
* @method app_conf_save
*
@ -76,6 +86,7 @@ uint32_t app_conf_on_changed(event_func_t on_event, void* ctx);
*
*
* @annotation ["static", "scriptable"]
* @param {uint32_t} id app_conf_on_changed返回的ID
*
* @return {ret_t} RET_OK表示成功
*/