mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
e8739156e4
This allows the defaults to be actual defaults across devices with different screen sizes
31 lines
654 B
C++
31 lines
654 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <jni.h>
|
|
|
|
namespace IDCache
|
|
{
|
|
static constexpr jint JNI_VERSION = JNI_VERSION_1_6;
|
|
|
|
JavaVM* GetJavaVM();
|
|
|
|
jclass GetNativeLibraryClass();
|
|
jmethodID GetDisplayAlertMsg();
|
|
jmethodID GetUpdateTouchPointer();
|
|
|
|
jclass GetAnalyticsClass();
|
|
jmethodID GetSendAnalyticsReport();
|
|
jmethodID GetAnalyticsValue();
|
|
|
|
jclass GetGameFileClass();
|
|
jfieldID GetGameFilePointer();
|
|
jmethodID GetGameFileConstructor();
|
|
|
|
jclass GetGameFileCacheClass();
|
|
jfieldID GetGameFileCachePointer();
|
|
|
|
} // namespace IDCache
|