未验证 提交 f777ecee 编写于 作者: L liyan 提交者: Gitee

统一input的大小写

Signed-off-by: Nli-yan339 <liyan339@h-partners.com>
上级 1f8001ae
...@@ -15,18 +15,18 @@ ...@@ -15,18 +15,18 @@
| Public&nbsp;属性 | 描述 | | Public&nbsp;属性 | 描述 |
| -------- | -------- | | -------- | -------- |
| (&nbsp;[ScanInputDevice](#scaninputdevice)&nbsp;)(DevDesc&nbsp;\*staArr,&nbsp;uint32_t&nbsp;arrLen) | input服务用于扫描所有在线设备。&nbsp;[更多...](#scaninputdevice) | | (&nbsp;[ScanInputDevice](#scaninputdevice)&nbsp;)(DevDesc&nbsp;\*staArr,&nbsp;uint32_t&nbsp;arrLen) | Input服务用于扫描所有在线设备。&nbsp;[更多...](#scaninputdevice) |
| (&nbsp;[OpenInputDevice](#openinputdevice)&nbsp;)(uint32_t&nbsp;devIndex) | input服务打开对应设备的设备文件&nbsp;[更多...](#openinputdevice) | | (&nbsp;[OpenInputDevice](#openinputdevice)&nbsp;)(uint32_t&nbsp;devIndex) | Input服务打开对应设备的设备文件&nbsp;[更多...](#openinputdevice) |
| (&nbsp;[CloseInputDevice](#closeinputdevice)&nbsp;)(uint32_t&nbsp;devIndex) | input服务关闭对应设备的设备文件&nbsp;[更多...](#closeinputdevice) | | (&nbsp;[CloseInputDevice](#closeinputdevice)&nbsp;)(uint32_t&nbsp;devIndex) | Input服务关闭对应设备的设备文件&nbsp;[更多...](#closeinputdevice) |
| (&nbsp;[GetInputDevice](#getinputdevice)&nbsp;)(uint32_t&nbsp;devIndex,&nbsp;[DeviceInfo](_device_info.md)&nbsp;\*\*devInfo) | input服务获取对应ID的设备信息&nbsp;[更多...](#getinputdevice) | | (&nbsp;[GetInputDevice](#getinputdevice)&nbsp;)(uint32_t&nbsp;devIndex,&nbsp;[DeviceInfo](_device_info.md)&nbsp;\*\*devInfo) | Input服务获取对应ID的设备信息&nbsp;[更多...](#getinputdevice) |
| (&nbsp;[GetInputDeviceList](#getinputdevicelist)&nbsp;)(uint32_t&nbsp;\*devNum,&nbsp;[DeviceInfo](_device_info.md)&nbsp;\*\*devList,&nbsp;uint32_t&nbsp;size) | input服务获取所有input设备列表的设备信息&nbsp;[更多...](#getinputdevicelist) | | (&nbsp;[GetInputDeviceList](#getinputdevicelist)&nbsp;)(uint32_t&nbsp;\*devNum,&nbsp;[DeviceInfo](_device_info.md)&nbsp;\*\*devList,&nbsp;uint32_t&nbsp;size) | Input服务获取所有Input设备列表的设备信息&nbsp;[更多...](#getinputdevicelist) |
## **详细描述** ## **详细描述**
提供input设备管理相关的接口。 提供Input设备管理相关的接口。
此类接口包含input设备的扫描、打开和关闭、特定设备信息查询,以及所有设备列表信息获取等接口。 此类接口包Input设备的扫描、打开和关闭、特定设备信息查询,以及所有设备列表信息获取等接口。
## **类成员变量说明** ## **类成员变量说明**
...@@ -41,13 +41,13 @@ int32_t(* InputManager::CloseInputDevice) (uint32_t devIndex) ...@@ -41,13 +41,13 @@ int32_t(* InputManager::CloseInputDevice) (uint32_t devIndex)
**描述:** **描述:**
input服务关闭对应设备的设备文件 Input服务关闭对应设备的设备文件
**参数:** **参数:**
| 名称 | 描述 | | 名称 | 描述 |
| -------- | -------- | | -------- | -------- |
| devIndex | Input设备索引,用于标志多个input设备,取值从0开始,最多支持32个设备 | | devIndex | Input设备索引,用于标志多个Input设备,取值从0开始,最多支持32个设备 |
**返回:** **返回:**
...@@ -65,13 +65,13 @@ int32_t(* InputManager::GetInputDevice) (uint32_t devIndex, DeviceInfo **devInfo ...@@ -65,13 +65,13 @@ int32_t(* InputManager::GetInputDevice) (uint32_t devIndex, DeviceInfo **devInfo
**描述:** **描述:**
input服务获取对应ID的设备信息。 Input服务获取对应ID的设备信息。
**参数:** **参数:**
| 名称 | 描述 | | 名称 | 描述 |
| -------- | -------- | | -------- | -------- |
| devIndex | Input设备索引,用于标志多个input设备,取值从0开始,最多支持32个设备。 | | devIndex | Input设备索引,用于标志多个Input设备,取值从0开始,最多支持32个设备。 |
| devInfo | 即devIndex对应设备的设备信息,具体参考**DeviceInfo**。 | | devInfo | 即devIndex对应设备的设备信息,具体参考**DeviceInfo**。 |
**返回:** **返回:**
...@@ -90,14 +90,14 @@ int32_t(* InputManager::GetInputDeviceList) (uint32_t *devNum, DeviceInfo **devL ...@@ -90,14 +90,14 @@ int32_t(* InputManager::GetInputDeviceList) (uint32_t *devNum, DeviceInfo **devL
**描述:** **描述:**
input服务获取所有input设备列表的设备信息。 Input服务获取所有Input设备列表的设备信息。
**参数:** **参数:**
| 名称 | 描述 | | 名称 | 描述 |
| -------- | -------- | | -------- | -------- |
| devNum | 当前已经注册过的所有input设备的总数。 | | devNum | 当前已经注册过的所有Input设备的总数。 |
| devInfo | input设备列表所对应的设备信息,具体参考**DeviceInfo**。 | | devInfo | Input设备列表所对应的设备信息,具体参考**DeviceInfo**。 |
| size | 即指定deviceList数组对应的元素个数。 | | size | 即指定deviceList数组对应的元素个数。 |
返回: 返回:
...@@ -116,13 +116,13 @@ int32_t(* InputManager::OpenInputDevice) (uint32_t devIndex) ...@@ -116,13 +116,13 @@ int32_t(* InputManager::OpenInputDevice) (uint32_t devIndex)
**描述:** **描述:**
input服务打开对应设备的设备文件 Input服务打开对应设备的设备文件
**参数:** **参数:**
| 名称 | 描述 | | 名称 | 描述 |
| -------- | -------- | | -------- | -------- |
| devIndex | Input设备索引,用于标志多个input设备,取值从0开始,最多支持32个设备。 | | devIndex | Input设备索引,用于标志多个Input设备,取值从0开始,最多支持32个设备。 |
**返回:** **返回:**
...@@ -140,7 +140,7 @@ int32_t(* InputManager::ScanInputDevice) (DevDesc *staArr, uint32_t arrLen) ...@@ -140,7 +140,7 @@ int32_t(* InputManager::ScanInputDevice) (DevDesc *staArr, uint32_t arrLen)
**描述:** **描述:**
input服务用于扫描所有在线设备。 Input服务用于扫描所有在线设备。
**参数:** **参数:**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册