mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 06:40:14 +00:00
21 lines
374 B
Java
21 lines
374 B
Java
package com.retroarch.browser;
|
|
|
|
/**
|
|
* Helper class which calls into JNI for various tasks.
|
|
*/
|
|
public final class NativeInterface
|
|
{
|
|
static
|
|
{
|
|
System.loadLibrary("retroarch-jni");
|
|
}
|
|
|
|
// Disallow explicit instantiation.
|
|
private NativeInterface()
|
|
{
|
|
}
|
|
|
|
public static native boolean extractArchiveTo(String archive,
|
|
String subDirectory, String destinationFolder);
|
|
}
|