houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
import com.sun.jna.NativeLong;
 
/** 
* @author 251823
* @description 区域;各边距按整长8192的比例
* @date 2022/07/21 15:15:27
*/
public class DH_RECT_REGION extends NetSDKLib.SdkStructure {
    public NativeLong      left;
    public NativeLong      top;
    public NativeLong      right;
    public NativeLong      bottom;
}