2013-06-11 20:34:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-03 21:18:50 +02:00
|
|
|
#include "ppsspp_config.h"
|
2013-07-03 01:17:57 -07:00
|
|
|
|
2021-02-27 13:48:07 +01:00
|
|
|
#include <string>
|
2021-04-24 22:47:57 +02:00
|
|
|
#include <cstdint>
|
2021-02-28 13:46:08 +01:00
|
|
|
|
2020-08-15 19:01:16 +02:00
|
|
|
#include "Common/LogManager.h"
|
2021-03-14 11:01:51 +01:00
|
|
|
#include "Common/File/DirListing.h"
|
2021-05-16 00:14:37 +02:00
|
|
|
#include "Common/File/Path.h"
|
2021-06-05 19:29:23 +02:00
|
|
|
#include "Common/File/AndroidStorage.h"
|
2021-04-24 22:47:57 +02:00
|
|
|
|
2021-10-10 11:49:53 +02:00
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
|
|
|
|
std::string Android_GetInputDeviceDebugString();
|
|
|
|
|
|
|
|
#if !defined(__LIBRETRO__)
|
2017-06-03 21:18:50 +02:00
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
2018-01-28 17:27:23 +01:00
|
|
|
jclass findClass(const char* name);
|
|
|
|
JNIEnv* getEnv();
|
2017-06-03 21:18:50 +02:00
|
|
|
|
2020-08-15 19:01:16 +02:00
|
|
|
class AndroidLogger : public LogListener {
|
|
|
|
public:
|
|
|
|
void Log(const LogMessage &message) override;
|
|
|
|
};
|
2021-10-10 11:49:53 +02:00
|
|
|
#endif
|
2021-02-27 11:49:38 +01:00
|
|
|
|
2021-02-28 13:46:08 +01:00
|
|
|
#endif
|
2023-01-03 19:01:51 +01:00
|
|
|
|