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