mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add a system property that we can later query to see if we should use scoped storage adaptations or not.
21 lines
321 B
C++
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;
|