#include "JNIExample.h"
/**
* This method just returns the string "Hello World from JNI!" to the caller
* Parameters:
*env-JNI Environment pointer
*obj-Invoking object
* Returns:
*A string
**/
extern "C" JNIEXPORT jstring JNICALL Java_JNIExample_sayHello
( JNIEnv *env, jobject obj ) {
return env->NewStringUTF( "Hello World from JNI!" );
}