houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
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_GetThingsCaps接口输出参数
10  * @date 2022/04/20 10:16:56
11  */
12 public class NET_OUT_THINGS_GET_CAPS extends NetSDKLib.SdkStructure {
13     /**
14      * 结构体大小, 调用者必须初始化该字段
15      */
16     public int dwSize;
17     /**
18      * 用户分配的pstuGetCapsProperName个数
19      */
20     public int nMaxProperCount;
21     /**
22      * 实际返回的pstuGetCapsProperName个数
23      */
24     public int nRetProperCount;
25     /**
26      * 物模型标识符,用户分配内存,大小为sizeof{@link NET_PROPERTIES_NAME}*nMaxProperCount
27      */
28     public Pointer pstuGetCapsProperName;
29
30     public NET_OUT_THINGS_GET_CAPS() {
31         this.dwSize = this.size();
32     }
33 }