提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
import com.sun.jna.Pointer; |
|
6 |
|
|
7 |
/** |
|
8 |
* @author 260611 |
|
9 |
* @description CLIENT_GetThingsDevList接口输出参数 |
|
10 |
* @date 2022/04/20 10:16:56 |
|
11 |
*/ |
|
12 |
public class NET_OUT_THINGS_GET_DEVLIST extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* 结构体大小, 调用者必须初始化该字段 |
|
15 |
*/ |
|
16 |
public int dwSize; |
|
17 |
/** |
|
18 |
* 用户分配的pstuDevListInfo个数 |
|
19 |
*/ |
|
20 |
public int nMaxDevListCount; |
|
21 |
/** |
|
22 |
* 实际返回的pstuDevListInfo个数 |
|
23 |
*/ |
|
24 |
public int nRetDevListCount; |
|
25 |
/** |
|
26 |
* 设备列表信息,用户分配内存,大小为sizeof{@link NET_THINGS_DEVLIST_INFO}*nMaxDevListCount |
|
27 |
*/ |
|
28 |
public Pointer pstuDevListInfo; |
|
29 |
|
|
30 |
public NET_OUT_THINGS_GET_DEVLIST() { |
|
31 |
this.dwSize = this.size(); |
|
32 |
} |
|
33 |
} |