Files
dolphin/Source/Android/jni/AndroidCommon/IDCache.h
T

32 lines
680 B
C++
Raw Normal View History

2018-06-01 09:36:29 +02: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 17:38:29 -04:00
static constexpr jint JNI_VERSION = JNI_VERSION_1_6;
2018-06-01 09:36:29 +02:00
JavaVM* GetJavaVM();
jclass GetNativeLibraryClass();
jmethodID GetDisplayAlertMsg();
2019-01-21 19:11:11 -05:00
jmethodID GetDoRumble();
jmethodID GetUpdateTouchPointer();
2018-06-01 09:36:29 +02:00
2018-08-19 17:38:29 -04:00
jclass GetAnalyticsClass();
jmethodID GetSendAnalyticsReport();
jmethodID GetAnalyticsValue();
2018-06-01 09:36:29 +02:00
jclass GetGameFileClass();
jfieldID GetGameFilePointer();
jmethodID GetGameFileConstructor();
jclass GetGameFileCacheClass();
jfieldID GetGameFileCachePointer();
} // namespace IDCache