mirror of
https://github.com/corda/corda.git
synced 2025-06-18 23:28:21 +00:00
hello, world
This commit is contained in:
@ -1,13 +1,16 @@
|
||||
#include "stdio.h"
|
||||
#include "jni.h"
|
||||
|
||||
#undef JNIEXPORT
|
||||
#define JNIEXPORT __attribute__ ((visibility("default")))
|
||||
|
||||
extern "C" JNIEXPORT void JNICALL
|
||||
Java_java_lang_System_Output_println(JNIEnv* e, jobject, jstring s)
|
||||
Java_java_lang_System_00024Output_println(JNIEnv* e, jobject, jstring s)
|
||||
{
|
||||
jboolean isCopy;
|
||||
const char* chars = e->GetStringUTFChars(s, &isCopy);
|
||||
if (chars) {
|
||||
printf("%s", chars);
|
||||
printf("%s\n", chars);
|
||||
}
|
||||
e->ReleaseStringUTFChars(s, chars);
|
||||
}
|
||||
|
Reference in New Issue
Block a user