Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. extern "C" JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved)
  2. {
  3. __android_log_print(ANDROID_LOG_INFO, __FUNCTION__, "onLoad");
  4. JNIEnv* env;
  5. if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
  6. return -1;
  7. }
  8.  
  9. gStore.mLength = 0;
  10. return JNI_VERSION_1_6;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement