Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@initishbhatt
Last active January 22, 2018 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save initishbhatt/359213df8b1f1c14457ca96181c1f680 to your computer and use it in GitHub Desktop.
Save initishbhatt/359213df8b1f1c14457ca96181c1f680 to your computer and use it in GitHub Desktop.
extern "C"
JNIEXPORT jint JNICALL
Java_your_package_name_Math_multiply(
JNIEnv* pEnv,
jobject jobj,
jint num1,
jint num2) {
return num1 * num2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment