ppsspp/android/jni/app-android.h
Henrik Rydgård 26eab06886 Add a Storage tab to System Information.
Add a system property that we can later query to see if we should use
scoped storage adaptations or not.
2021-02-27 11:49:38 +01:00

21 lines
321 B
C++

#pragma once
#include "ppsspp_config.h"
#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;