Skip to content

Instantly share code, notes, and snippets.

@masazdream
Last active December 17, 2015 05:48
Show Gist options
  • Save masazdream/5560082 to your computer and use it in GitHub Desktop.
Save masazdream/5560082 to your computer and use it in GitHub Desktop.
JNI JavaからCPPを呼び出す<2>
//============================================================================
// 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");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment