ppsspp/android/jni/app-android.h
Henrik Rydgård 54c9e28444 Android: Implement opening ISOs through a file picker and Storage Access Framework
Has issues with the recent list - fails to open during shutdown due to
no activity, there's a little race to fix.
2021-02-27 13:49:20 +01:00

22 lines
339 B
C++

#pragma once
#include "ppsspp_config.h"
#include <string>
#include "Common/LogManager.h"
#if PPSSPP_PLATFORM(ANDROID)
#include <jni.h>
jclass findClass(const char* name);
JNIEnv* getEnv();
#endif
class AndroidLogger : public LogListener {
public:
void Log(const LogMessage &message) override;
};
extern std::string g_extFilesDir;