mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-07 13:56:31 +08:00
17 lines
435 B
Java
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();
|
|
}
|