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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
686 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;
2019-05-29 20:22:26 +08:00
JNIEnv* GetEnvForThread();
2018-06-01 09:36:29 +02:00
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