DELL
2025-04-28 e6eb7fb0af366e370f125668d62e89eb0004f517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.ueky;
import com.softkey.Covert;
import com.softkey.jsyunew3;
public class CRunFunc {
    
    private com.softkey.jsyunew3 mD8;
    private int LastErr=0;
    CRunFunc()
    {
         mD8=new  com.softkey.jsyunew3();
    }
 
    public int GetLastErr()
    {
        return LastErr;
    }
    
     //@Func
    
    
    public int RunFunc()
    {
         String KeyPath;
         KeyPath= mD8.FindD8(0, "@VerfCode");
         LastErr=(int)mD8.get_LastError();
         if (LastErr != 0) return LastErr;
 
         //@RunFunc
 
         //release KeyPath
         mD8.CloseUsbHandle(KeyPath);
         return LastErr;
    }
 
    //Function:ApiCall  only was used that Api  was callled in Key's code#,
    private int ApiCall(String KeyPath)
    {
        //@ApiCall
 
        LastErr = mD8.ContinuRun(KeyPath);
        if (LastErr == -7999) { ApiCall(KeyPath); }
        return LastErr;
    }
 
     public int FindDogOnPnp()
     {
         String KeyPath;
         KeyPath=mD8.FindD8(0, "@VerfCode");
         int ret=(int)mD8.get_LastError();
         //release KeyPath
         mD8.CloseUsbHandle(KeyPath);
         return ret;
     }
}