Disable Keyboard by default

This commit is contained in:
Florian Märkl 2020-11-11 14:03:56 +01:00
commit a2ebf7e408
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
7 changed files with 9 additions and 3 deletions

View file

@ -204,7 +204,7 @@ JNIEXPORT void JNICALL JNI_FCN(sessionCreate)(JNIEnv *env, jobject obj, jobject
jobject connect_video_profile_obj = E->GetObjectField(env, connect_info_obj, E->GetFieldID(env, connect_info_class, "videoProfile", "L"BASE_PACKAGE"/ConnectVideoProfile;"));
jclass connect_video_profile_class = E->GetObjectClass(env, connect_video_profile_obj);
ChiakiConnectInfo connect_info;
ChiakiConnectInfo connect_info = { 0 };
const char *str_borrow = E->GetStringUTFChars(env, host_string, NULL);
connect_info.host = host_str = strdup(str_borrow);
E->ReleaseStringUTFChars(env, host_string, str_borrow);