修改接口注释信息

Signed-off-by: 周澎亮 <zhoupengliang1@huawei.com>
This commit is contained in:
周澎亮 2024-11-18 08:39:06 +00:00 committed by Gitee
parent 3c2aeb223f
commit c57861befb
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 11 additions and 11 deletions

View File

@ -13,9 +13,6 @@
* limitations under the License.
*/
#ifndef OH_INPUT_MANAGER_H
#define OH_INPUT_MANAGER_H
/**
* @addtogroup input
* @{
@ -35,6 +32,9 @@
* @since 12
*/
#ifndef OH_INPUT_MANAGER_H
#define OH_INPUT_MANAGER_H
#include <stdint.h>
#include "oh_axis_type.h"
@ -674,7 +674,7 @@ int32_t OH_Input_GetMouseEventAxisType(const struct Input_MouseEvent* mouseEvent
* @brief Sets the axis value for a mouse axis event.
*
* @param mouseEvent Mouse event object.
* @param axisType Axis value. A positive value means scrolling forward,
* @param axisValue Axis value. A positive value means scrolling forward,
* and a negative number means scrolling backward.
* @syscap SystemCapability.MultimodalInput.Input.Core
* @since 12
@ -704,7 +704,7 @@ void OH_Input_SetMouseEventActionTime(struct Input_MouseEvent* mouseEvent, int64
/**
* @brief Obtains the time when a mouse event occurs.
*
* @param keyEvent Mouse event object.
* @param mouseEvent Mouse event object.
* @return Returns the time when the mouse event occurs.
* @syscap SystemCapability.MultimodalInput.Input.Core
* @since 12
@ -825,7 +825,7 @@ int32_t OH_Input_GetTouchEventDisplayY(const struct Input_TouchEvent* touchEvent
/**
* @brief Sets the time when a touch event occurs.
*
* @param keyEvent Touch event object.
* @param touchEvent Touch event object.
* @param actionTime Time when the touch event occurs.
* @syscap SystemCapability.MultimodalInput.Input.Core
* @since 12
@ -835,7 +835,7 @@ void OH_Input_SetTouchEventActionTime(struct Input_TouchEvent* touchEvent, int64
/**
* @brief Obtains the time when a touch event occurs.
*
* @param keyEvent touch event object.
* @param touchEvent touch event object.
* @return Returns the time when the touch event occurs.
* @syscap SystemCapability.MultimodalInput.Input.Core
* @since 12
@ -1050,7 +1050,7 @@ Input_Result OH_Input_SetAxisEventSourceType(Input_AxisEvent* axisEvent, InputEv
* @brief Obtains the axis event source type.
*
* @param axisEvent Axis event object.
* @param axisEventType Axis event source type. The values are defined in {@link InputEvent_SourceType}.
* @param sourceType Axis event source type. The values are defined in {@link InputEvent_SourceType}.
* @return OH_Input_GetAxisEventSourceType function result code.
* {@link INPUT_SUCCESS} Obtains the axis event source type success.\n
* {@link INPUT_PARAMETER_ERROR} The axisEvent is NULL or the sourceType is NULL.\n

View File

@ -13,9 +13,6 @@
* limitations under the License.
*/
#ifndef OH_KEY_CODE_H
#define OH_KEY_CODE_H
/**
* @addtogroup input
* @{
@ -35,6 +32,9 @@
* @since 12
*/
#ifndef OH_KEY_CODE_H
#define OH_KEY_CODE_H
#ifdef __cplusplus
extern "C" {
#endif