mirror of
https://github.com/libretro/RetroArch
synced 2025-03-09 04:13:48 +00:00
15 lines
303 B
Java
15 lines
303 B
Java
package com.retroarch.browser;
|
|
|
|
/**
|
|
* Helper class which calls into JNI for various tasks.
|
|
*/
|
|
public final class NativeInterface {
|
|
|
|
static {
|
|
System.loadLibrary("retroarch-jni");
|
|
}
|
|
|
|
public static native boolean extractArchiveTo(String archive,
|
|
String subDirectory, String destinationFolder);
|
|
}
|