Download perl lib http://strawberryperl.com/ 더보기 change orientation android:configChanges="orientation|screenSize" 더보기 NDK 에서 string 처리 NDK 에서 c 파일과 cpp 파일간의 string 처리가 약간 다른데 다음과 같다.c view plaincopy to clipboardprint?jint Java_com_example_ffmpeg_MoviePlayView_openMovie(JNIEnv *env, jobject thiz, jstring filePath) { const jbyte *str; int result; str = (*env)->GetStringUTFChars(env, filePath, NULL); result = openMovie(str); (*env)->ReleaseStringUTFChars(env, filePath, str); return result; } cpp view plaincopy to clipboardprint?js.. 더보기 이전 1 ··· 1209 1210 1211 1212 1213 1214 1215 1216 다음