//============================================================================
// Name        : HelloWorldJNI.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================


#include "jp_sp_jni_HelloWorldJNI.h"
JNIEXPORT jstring JNICALL

Java_jp_sp_jni_HelloWorldJNI_sayHelloWorld(JNIEnv *env, jobject obj){
    return env->NewStringUTF("Hello World");
}