improve wasm helper

This commit is contained in:
lixianjing 2023-08-24 17:39:10 +08:00
parent 964c4ae8db
commit 9e3ed5099d
2 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,6 @@
# 最新动态
2023/08/24
* 完善wasm helper
2023/08/23
* 修复控件动画的回调函数收到注册顺序影响(感谢智明提供补丁)

View File

@ -76,6 +76,9 @@ unsigned long long strtoull(const char* str, char** endptr, int base);
void qsort (void *, size_t, size_t, int (*)(const void *, const void *));
#define towlower(c) tolower(c)
#define towupper(c) toupper(c)
END_C_DECLS
#endif /*WASM_HELPER_H*/