Files
MemProcFS/vmmjava/leechcore/ILeechCoreBarContext.java
2023-08-20 21:33:18 +02:00

17 lines
435 B
Java

package leechcore;
/**
* LeechCore PCIe BAR Context Interface<br>
* The BAR callback is disabled when this interface is closed / cleaned up.
* Check out the example code to get started! https://github.com/ufrisk/LeechCore/<br>
* @see https://github.com/ufrisk/LeechCore
* @author Ulf Frisk - pcileech@frizk.net
*/
public interface ILeechCoreBarContext
{
/**
* Close/Inactivate the BAR callback.
*/
public void close();
}