blob: a684abe4132836aef2f1a4de2db94dfeb278a312 [file] [log] [blame]
Richard S. Halld9c80e42006-10-17 18:16:07 +00001#include "org_apache_felix_simple_Activator.h"
2
3JNIEXPORT jstring JNICALL
4 Java_org_apache_felix_simple_Activator_foo
5 (JNIEnv *env, jobject obj)
6{
7 char *cstr = "Hello!";
8 jstring jstr = (*env)->NewStringUTF(env, cstr);
9 return jstr;
10}