Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/jni/app-android.h
3186 views
1
#pragma once
2
3
#include "ppsspp_config.h"
4
5
#include <string>
6
#include <cstdint>
7
8
#include "Common/Log/LogManager.h"
9
#include "Common/File/DirListing.h"
10
#include "Common/File/Path.h"
11
#include "Common/File/AndroidStorage.h"
12
13
#if PPSSPP_PLATFORM(ANDROID)
14
15
std::string Android_GetInputDeviceDebugString();
16
17
#if !defined(__LIBRETRO__)
18
19
#include <jni.h>
20
21
jclass findClass(const char* name);
22
JNIEnv* getEnv();
23
24
#endif
25
26
#endif
27
28
29