!2430 添加addtogroup

Merge pull request !2430 from sjh/master
This commit is contained in:
openharmony_ci 2024-11-15 06:06:22 +00:00 committed by Gitee
commit 1ee4bc8930
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 24 additions and 4 deletions

View File

@ -13,8 +13,14 @@
* limitations under the License.
*/
#ifndef NATIVE_TELEPHONY_RADIO_API_H
#define NATIVE_TELEPHONY_RADIO_API_H
/**
* @addtogroup Telephony
* @{
*
* @brief Provides C interface for the telephony radio.
*
* @since 13
*/
/**
* @file telephony_radio.h
@ -27,6 +33,9 @@
* @since 13
*/
#ifndef NATIVE_TELEPHONY_RADIO_API_H
#define NATIVE_TELEPHONY_RADIO_API_H
#include "telephony_radio_type.h"
#include "stdint.h"
@ -72,3 +81,4 @@ Telephony_RadioResult OH_Telephony_GetNetworkStateForSlot(int32_t slotId, Teleph
#endif
#endif // NATIVE_TELEPHONY_RADIO_API_H
/** @} */

View File

@ -13,8 +13,14 @@
* limitations under the License.
*/
#ifndef NATIVE_TELEPHONY_RADIO_TYPE_H
#define NATIVE_TELEPHONY_RADIO_TYPE_H
/**
* @addtogroup Telephony
* @{
*
* @brief Provides the data structures for the C APIs of the the telephony radio.
*
* @since 13
*/
/**
* @file telephony_radio_type.h
@ -27,6 +33,9 @@
* @since 13
*/
#ifndef NATIVE_TELEPHONY_RADIO_TYPE_H
#define NATIVE_TELEPHONY_RADIO_TYPE_H
#ifdef __cplusplus
extern "C" {
#endif
@ -155,3 +164,4 @@ typedef struct Telephony_NetworkState {
#endif
#endif // NATIVE_TELEPHONY_RADIO_TYPE_H
/** @} */