1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.iailab.netsdk.lib.structure;
|
| import com.iailab.netsdk.lib.NetSDKLib;
| import com.sun.jna.NativeLong;
|
| /**
| * @author 251823
| * @description
| * @date 2022/06/17 11:14:34
| */
| public class RECT extends NetSDKLib.SdkStructure {
|
| public NativeLong left;
|
| public NativeLong top;
|
| public NativeLong right;
|
| public NativeLong bottom;
|
| public RECT() {
| }
| }
|
|