You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
694 B

/*
* Copyright (C), 2018-2022
* Project: starter
* FileName: DLLUtil
* Author: xx
* Date: 2022/5/10 16:39
*/
package com.fr.plugin.gb.utils;
import com.sun.jna.Library;
import com.sun.jna.Native;
/**
* <Function Description><br>
* <DLLUtil>
*
* @author xx
* @since 1.0.0
*/
public interface DLLUtil extends Library {
// DLLUtil dllUtil32 = (DLLUtil) Native.load("Encryptor6_32.dll", DLLUtil.class);
DLLUtil dllUtil64 = (DLLUtil) Native.loadLibrary("Encryptor6_64.dll", DLLUtil.class);
public int Da(String strFilePath, int bReplace, String dstFilePath);
public int Ia(String pFilePath);
public int Ea(String strFilePath);
}