diff --git a/zh-cn/native_sdk/bundle/native_interface_bundle.h b/zh-cn/native_sdk/bundle/native_interface_bundle.h index c433faa3503068e524a616b82ea6923805c576b3..c8515eefe80d3c9c60c7d0822f3c94c59958e463 100644 --- a/zh-cn/native_sdk/bundle/native_interface_bundle.h +++ b/zh-cn/native_sdk/bundle/native_interface_bundle.h @@ -28,6 +28,7 @@ * * @brief 提供查询应用包信息的功能,获取到的信息包含应用包名和应用指纹信息。 * + * @kit AbilityKit * @library libbundle.z.so * @syscap SystemCapability.BundleManager.BundleFramework.Core * @since 9 @@ -42,14 +43,22 @@ extern "C" { /** * @brief 应用包信息数据结构,包含应用包名和应用指纹信息。 * + * @syscap SystemCapability.BundleManager.BundleFramework.Core * @since 9 - * @version 1.0 */ -typedef struct OH_NativeBundle_ApplicationInfo +struct OH_NativeBundle_ApplicationInfo { - /** 应用的包名 */ + /** + * 应用的包名 + * @syscap SystemCapability.BundleManager.BundleFramework.Core + * @since 9 + */ char* bundleName; - /** 应用的指纹信息 */ + /** + * 应用的指纹信息 + * @syscap SystemCapability.BundleManager.BundleFramework.Core + * @since 9 + */ char* fingerprint; };