lzw
2024-02-28 d4feb21868458d2db8275a7e8440922e5807ed0f
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");
 
    }
}