blob: 90f5a1c38c4804e27f4f3f86eae1c05071a7936b [file] [log] [blame]
#include "org_apache_felix_examples_simple_Activator.h"
JNIEXPORT jstring JNICALL
Java_org_apache_felix_examples_simple_Activator_foo
(JNIEnv *env, jobject obj)
{
char *cstr = "Hello!";
jstring jstr = (*env)->NewStringUTF(env, cstr);
return jstr;
}