mirror of
https://gitee.com/openharmony/interface_sdk_c
synced 2024-11-27 00:41:01 +00:00
903642507a
Signed-off-by: 施运理 <shiyunli@huawei.com>
64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2024 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup OsAccount
|
|
* @{
|
|
*
|
|
* @brief Provide the definition of the C interface for the native OsAccount.
|
|
* @since 12
|
|
*/
|
|
|
|
/**
|
|
* @file os_account_common.h
|
|
*
|
|
* @brief Declare the common types for the native OsAccount.
|
|
* @library libos_account_ndk.so
|
|
* @kit BasicServicesKit
|
|
* @syscap SystemCapability.Account.OsAccount
|
|
* @since 12
|
|
*/
|
|
|
|
#ifndef OS_ACCOUNT_COMMON_H
|
|
#define OS_ACCOUNT_COMMON_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Enumerates the error codes.
|
|
*
|
|
* @since 12
|
|
*/
|
|
typedef enum OsAccount_ErrCode {
|
|
/** @error Operation is successful.*/
|
|
OS_ACCOUNT_ERR_OK = 0,
|
|
|
|
/** @error Internal error.*/
|
|
OS_ACCOUNT_ERR_INTERNAL_ERROR = 12300001,
|
|
|
|
/** @error Invalid parameter.*/
|
|
OS_ACCOUNT_ERR_INVALID_PARAMETER = 12300002
|
|
} OsAccount_ErrCode;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
#endif // OS_ACCOUNT_COMMON_H
|