CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/jni/app-android.h
Views: 1401
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
class AndroidLogger : public LogListener {
25
public:
26
void Log(const LogMessage &message) override;
27
};
28
#endif
29
30
#endif
31
32
33