PPT Slide
(JNIEnv * env, jobject thisObj, jstring strMessage){
(*env)->GetStringUTFChars(env, strMessage, 0);
(*env)->ReleaseStringUTFChars(env, strMessage, str);
/*Note need to convert chars from Unicode to UTF, and then free created char buffer from the VM */