Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <jni.h>
  2. #include "example.h"
  3.  
  4. extern "C"
  5. JNIEXPORT jlong JNICALL
  6. Java_com_mariusreimer_rncppcode_RNCPPCodeModule_multiply(JNIEnv *env, jclass type, jlong a, jlong b) {
  7. return example::multiply(a, b);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement