From c26e26a124bc018661bc12f9286465b7166f2926 Mon Sep 17 00:00:00 2001 From: zengyawen Date: Fri, 13 Jan 2023 02:46:03 +0000 Subject: [PATCH] add huks api Signed-off-by: zengyawen --- .../native-apis/_o_h___huks___result.md | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 zh-cn/application-dev/reference/native-apis/_o_h___huks___result.md diff --git a/zh-cn/application-dev/reference/native-apis/_o_h___huks___result.md b/zh-cn/application-dev/reference/native-apis/_o_h___huks___result.md new file mode 100644 index 0000000000..cc2c126a55 --- /dev/null +++ b/zh-cn/application-dev/reference/native-apis/_o_h___huks___result.md @@ -0,0 +1,58 @@ +# OH_Huks_Result + + +## 概述 + +表示状态返回数据,包括返回码和消息。 + + **起始版本:** +9 + +**相关模块:** + +[HuksTypeApi](_huks_type_api.md) + + +## 汇总 + + +### 成员变量 + + | 名称 | 描述 | +| -------- | -------- | +| [errorCode](#errorcode) | int32_t
状态返回码。 | +| [errorMsg](#errormsg) | const char \*
对状态返回码的说明信息。 | +| [data](#data) | uint8_t \*
其他返回数据。 | + + +## 结构体成员变量说明 + + +### data + + +``` +uint8_t* OH_Huks_Result::data +``` +**描述:** +其他返回数据。 + + +### errorCode + + +``` +int32_t OH_Huks_Result::errorCode +``` +**描述:** +状态返回码。 + + +### errorMsg + + +``` +const char* OH_Huks_Result::errorMsg +``` +**描述:** +对状态返回码的说明信息。 -- GitLab