2007-06-25 01:34:07 +00:00
|
|
|
#include "stdio.h"
|
|
|
|
#include "jni.h"
|
|
|
|
|
2007-06-29 16:42:39 +00:00
|
|
|
#undef JNIEXPORT
|
|
|
|
#define JNIEXPORT __attribute__ ((visibility("default")))
|
|
|
|
|
2007-06-25 01:34:07 +00:00
|
|
|
extern "C" JNIEXPORT void JNICALL
|
2007-06-29 16:42:39 +00:00
|
|
|
Java_java_lang_System_00024Output_println(JNIEnv* e, jobject, jstring s)
|
2007-06-25 01:34:07 +00:00
|
|
|
{
|
|
|
|
jboolean isCopy;
|
|
|
|
const char* chars = e->GetStringUTFChars(s, &isCopy);
|
|
|
|
if (chars) {
|
2007-06-29 16:42:39 +00:00
|
|
|
printf("%s\n", chars);
|
2007-06-25 01:34:07 +00:00
|
|
|
}
|
|
|
|
e->ReleaseStringUTFChars(s, chars);
|
|
|
|
}
|