1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.netsdk.lib.structure;
|
| import com.netsdk.lib.NetSDKLib;
| import com.sun.jna.Pointer;
|
| /**
| * @author 47081
| * @version 1.0
| * @description {@link NetSDKLib#CLIENT_Set2DCode(NetSDKLib.LLong, Pointer, Pointer, int)}的出参
| * @date 2020/9/10
| */
| public class NET_OUT_SET_2DCODE extends NetSDKLib.SdkStructure {
| /**
| * 结构体大小
| */
| public int dwSize;
|
| public NET_OUT_SET_2DCODE() {
| this.dwSize = this.size();
| }
| }
|
|