mirror of
https://gitee.com/wa-lang/wa.git
synced 2025-12-06 09:18:53 +08:00
11 lines
367 B
Plaintext
11 lines
367 B
Plaintext
// Copyright (C) 2024 武汉凹语言科技有限公司
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
func ClockResGet(id: i32, result_resolution: i32) => (errno: i32) {
|
|
return __import__clock_res_get(id, result_resolution)
|
|
}
|
|
|
|
func ClockTimeGet(id: i32, precision: i64, result_timestamp: i32) => (errno: i32) {
|
|
return __import__clock_time_get(id, precision, result_timestamp)
|
|
}
|