From 1cd0ddc37ae8d31aec245b66d26dc5cab02c3b84 Mon Sep 17 00:00:00 2001 From: qiu_yu_jia Date: Tue, 3 Dec 2024 15:04:56 +0800 Subject: [PATCH] modify the comment about get_device_api_version method Signed-off-by: qiu_yu_jia --- third_party/musl/ndk_musl_include/info/device_api_version.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/third_party/musl/ndk_musl_include/info/device_api_version.h b/third_party/musl/ndk_musl_include/info/device_api_version.h index 1708aa441..47e2572e0 100644 --- a/third_party/musl/ndk_musl_include/info/device_api_version.h +++ b/third_party/musl/ndk_musl_include/info/device_api_version.h @@ -21,8 +21,9 @@ extern "C" { #endif /** - * @brief Get the api version number of the device. - * @return The api version number of the device. + * @brief Get the api version number of the device, the value is equal to const.ohos.apiversion value. + * If get api version value not equal API_VERSION_DEFAULT, the cached value will be used and not be updated. + * @return The api version number of the device, or 0 on default/failure. */ int get_device_api_version(void); -- Gitee