zhanghua
2024-09-05 e314e414656a731f4ef35e51c0349ea608ec2fe0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.netsdk.demo.module;
 
import com.ycl.util.dahua.lib.NetSDKLib.NET_CTRL_SET_PARK_INFO;
 
public class DotmatrixScreenModule {
    
    
    public static boolean setDotmatrixScreen(int emType, NET_CTRL_SET_PARK_INFO msg) {
        
        boolean ret = LoginModule.netsdk.CLIENT_ControlDevice(LoginModule.m_hLoginHandle, emType, msg.getPointer(), 3000);
        
        return ret;    
    }
}