From dcbfc564e20484519a3022f5634cdf00142864c6 Mon Sep 17 00:00:00 2001 From: zengyawen Date: Fri, 14 Apr 2023 09:29:49 +0000 Subject: [PATCH] add nativeapis Signed-off-by: zengyawen --- .../native-apis/_o_h___huks___result.md | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/en/application-dev/reference/native-apis/_o_h___huks___result.md b/en/application-dev/reference/native-apis/_o_h___huks___result.md index e69de29bb2..dbe5e98064 100644 --- a/en/application-dev/reference/native-apis/_o_h___huks___result.md +++ b/en/application-dev/reference/native-apis/_o_h___huks___result.md @@ -0,0 +1,58 @@ +# OH_Huks_Result + + +## Overview + +Defines the return data, including the result code and message. + +**Since:** +9 + +**Related Modules:** + +[HuksTypeApi](_huks_type_api.md) + + +## Summary + + +### Member Variables + +| Name | Description | +| -------- | -------- | +| [errorCode](#errorcode) | Result code. | +| [errorMsg](#errormsg) | Description of the result code. | +| [data](#data) | Other data returned. | + + +## Member Variable Description + + +### data + + +``` +uint8_t* OH_Huks_Result::data +``` +**Description**
+Other data returned. + + +### errorCode + + +``` +int32_t OH_Huks_Result::errorCode +``` +**Description**
+Result code. + + +### errorMsg + + +``` +const char* OH_Huks_Result::errorMsg +``` +**Description**
+Description of the result code. -- GitLab