mirror of
https://gitee.com/lzc56/WouoUI-PageVersion.git
synced 2025-06-17 04:47:51 +00:00

1. 将全局数组去掉,改为指针连接上级页面,支持理论上无限多个页面,不再受数组大小的限制。 2. UI文件中的变量整理归类,使代码体积占用更小(会在下一个大版本中给出具体的代码内存占用数据)。 3. 修复在弹窗时页面跳转的bug。
17 lines
171 B
C
17 lines
171 B
C
#ifndef __TEST_UI_H__
|
|
#define __TEST_UI_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void TestUI_Init(void);
|
|
void TestUI_Proc(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|