ultimatepp/examples/AndroidMath/AndroidMath.cpp
klugier 9953ec78f1 .exampls Added more comments to AndroidMath
git-svn-id: svn://ultimatepp.org/upp/trunk@9586 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-03-12 11:44:12 +00:00

17 lines
294 B
C++

#include <string.h>
#include <jni.h>
#include <AndroidMathUtility/AndroidMathUtility.h>
extern "C" {
JNIEXPORT jint JNICALL Java_org_upp_AndroidMath_AndroidMath_power(
JNIEnv *,
jclass,
jint number,
jint n)
{
return AndroidMathUtility::Power(number, n);
}
} // extern "C"