| 26069 | namespace |
| 26070 | { |
| 26071 | String juceString (JNIEnv* env, jstring s) |
| 26072 | { |
| 26073 | const char* const utf8 = env->GetStringUTFChars (s, nullptr); |
| 26074 | CharPointer_UTF8 utf8CP (utf8); |
| 26075 | const String result (utf8CP); |
| 26076 | env->ReleaseStringUTFChars (s, utf8); |
| 26077 | return result; |
| 26078 | } |
| 26079 | |
| 26080 | String juceString (jstring s) |
| 26081 | { |
no test coverage detected