error message mofify

Signed-off-by: zhaogan <zhaogan2@huawei.com>
This commit is contained in:
zhaogan 2024-05-16 11:03:16 +08:00
parent 2e0abe4b23
commit 37a226fca9

View File

@ -70,7 +70,9 @@ typedef struct OH_NativeBundle_ApplicationInfo OH_NativeBundle_ApplicationInfo;
/**
* @brief Obtains the application info based on the The current bundle.
*
* @return Returns the application info.
* @return Returns the newly created OH_NativeBundle_ApplicationInfo object, if the returned object is NULL,
* it indicates creation failure. The possible cause of failure could be that the application address space is full,
* leading to space allocation failure.
* @since 9
* @version 1.0
*/
@ -82,7 +84,10 @@ OH_NativeBundle_ApplicationInfo OH_NativeBundle_GetCurrentApplicationInfo();
* After utilizing this interface, to prevent memory leaks,
* it is necessary to manually release the pointer returned by the interface.
*
* @return Returns the appId info.
* @return Returns the newly created string that indicates appId information,
* if the returned object is NULL, it indicates creation failure.
* The possible cause of failure could be that the application address space is full,
* leading to space allocation failure.
* @since 11
* @version 1.0
*/
@ -94,7 +99,10 @@ char* OH_NativeBundle_GetAppId();
* After utilizing this interface, to prevent memory leaks,
* it is necessary to manually release the pointer returned by the interface.
*
* @return Returns the appIdentifier info.
* @return Returns the newly created string that indicates app identifier information,
* if the returned object is NULL, it indicates creation failure.
* The possible cause of failure could be that the application address space is full,
* leading to space allocation failure.
* @since 11
* @version 1.0
*/