2018-06-01 07:36:29 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
|
|
|
namespace IDCache
|
|
|
|
{
|
2018-08-19 21:38:29 +00:00
|
|
|
static constexpr jint JNI_VERSION = JNI_VERSION_1_6;
|
|
|
|
|
2019-05-29 12:22:26 +00:00
|
|
|
JNIEnv* GetEnvForThread();
|
2018-06-01 07:36:29 +00:00
|
|
|
|
|
|
|
jclass GetNativeLibraryClass();
|
|
|
|
jmethodID GetDisplayAlertMsg();
|
2019-01-22 00:11:11 +00:00
|
|
|
jmethodID GetDoRumble();
|
2019-01-20 03:49:04 +00:00
|
|
|
jmethodID GetUpdateTouchPointer();
|
2018-06-01 07:36:29 +00:00
|
|
|
|
2018-08-19 21:38:29 +00:00
|
|
|
jclass GetAnalyticsClass();
|
|
|
|
jmethodID GetSendAnalyticsReport();
|
|
|
|
jmethodID GetAnalyticsValue();
|
|
|
|
|
2018-06-01 07:36:29 +00:00
|
|
|
jclass GetGameFileClass();
|
|
|
|
jfieldID GetGameFilePointer();
|
|
|
|
jmethodID GetGameFileConstructor();
|
|
|
|
|
|
|
|
jclass GetGameFileCacheClass();
|
|
|
|
jfieldID GetGameFileCachePointer();
|
|
|
|
|
|
|
|
} // namespace IDCache
|