blob: 25ea59ed3083fe3ae51b07df25471e51bd7a2ec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <string>
#include <jni.h>
std::string GetJString(JNIEnv* env, jstring jstr);
jstring ToJString(JNIEnv* env, const std::string& str);
|