mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-27 19:29:13 +00:00
Android: Add content provider support to File::Delete
This commit is contained in:
parent
6e1e6d2311
commit
3805b84906
6 changed files with 49 additions and 2 deletions
|
@ -41,6 +41,7 @@ static jmethodID s_compress_cb_run;
|
|||
|
||||
static jclass s_content_handler_class;
|
||||
static jmethodID s_content_handler_open_fd;
|
||||
static jmethodID s_content_handler_delete;
|
||||
|
||||
namespace IDCache
|
||||
{
|
||||
|
@ -187,6 +188,11 @@ jmethodID GetContentHandlerOpenFd()
|
|||
return s_content_handler_open_fd;
|
||||
}
|
||||
|
||||
jmethodID GetContentHandlerDelete()
|
||||
{
|
||||
return s_content_handler_delete;
|
||||
}
|
||||
|
||||
} // namespace IDCache
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -259,6 +265,8 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved)
|
|||
s_content_handler_class = reinterpret_cast<jclass>(env->NewGlobalRef(content_handler_class));
|
||||
s_content_handler_open_fd = env->GetStaticMethodID(s_content_handler_class, "openFd",
|
||||
"(Ljava/lang/String;Ljava/lang/String;)I");
|
||||
s_content_handler_delete =
|
||||
env->GetStaticMethodID(s_content_handler_class, "delete", "(Ljava/lang/String;)Z");
|
||||
|
||||
return JNI_VERSION;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue