ppsspp/android/jni/app-android.h
Henrik Rydgård e6857388c7 Add input device debug info to touchscreen test screen
(yeah maybe there's a better place but it's fine).

Also make a slight tweak to the detection order which I don't think
matters much.
2021-10-10 11:50:20 +02:00

31 lines
533 B
C++

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