mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-18 02:48:28 +00:00
32 lines
516 B
C++
32 lines
516 B
C++
#pragma once
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
#include "Common/LogManager.h"
|
|
#include "Common/File/DirListing.h"
|
|
#include "Common/File/Path.h"
|
|
#include "Common/File/AndroidStorage.h"
|
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
std::string Android_GetInputDeviceDebugString();
|
|
|
|
#if !defined(__LIBRETRO__)
|
|
|
|
#include <jni.h>
|
|
|
|
jclass findClass(const char* name);
|
|
JNIEnv* getEnv();
|
|
|
|
class AndroidLogger : public LogListener {
|
|
public:
|
|
void Log(const LogMessage &message) override;
|
|
};
|
|
#endif
|
|
|
|
#endif
|
|
|