lzw
2024-02-19 4a31fb20e79e910f20e2dc43b3323dd51fa6e7e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.jni;
 
 
 
public class StorageTestCommand {
 
    public native int initDeviceCommandDll(String logPath);
 
    public native int UpdateFW(String fwPath);
    public native int SonixCamInit(int vid,int pid,int fd, int busnum, int devaddr, String USBFS);
    public native int SonixCamUnInit();
 
 
 
    static {
        //System.loadLibrary("UStorageDeviceFS");
        System.loadLibrary("UStorageTest");
 
    }
}