Files
luban-lite-t3e-pro/packages/third-party/awtk-ui/awtk/tests/get_time.inc

8 lines
143 B
PHP
Raw Normal View History

2023-11-09 20:19:51 +08:00
static uint32_t s_now = 0;
static uint32_t timer_get_time() {
return s_now;
}
static void timer_set_time(uint32_t now) {
s_now = now;
}