潘志宝
2025-03-26 b270a07828a9627f1a42e254a430c9921fec4e95
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;
}