ultimatepp/examples/AndroidMath/AndroidMath.cpp
klugier 99222001cf Added Android builder juicy example
git-svn-id: svn://ultimatepp.org/upp/trunk@8640 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-07 21:52:43 +00:00

23 lines
415 B
C++

#include <string.h>
#include <jni.h>
#include <AndroidMathUtility/AndroidMathUtility.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: org_upp_AndroidMath_AndroidMath
* Method: power
* Signature: (II)I
*/
JNIEXPORT jint JNICALL Java_org_upp_AndroidMath_AndroidMath_power
(JNIEnv *, jclass, jint number, jint n)
{
return AndroidMathUtility::Power(number, n);
}
#ifdef __cplusplus
}
#endif