summaryrefslogtreecommitdiffstats
path: root/Tests/JavaJavah/B.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/JavaJavah/B.cpp')
-rw-r--r--Tests/JavaJavah/B.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/JavaJavah/B.cpp b/Tests/JavaJavah/B.cpp
new file mode 100644
index 0000000..2666757
--- /dev/null
+++ b/Tests/JavaJavah/B.cpp
@@ -0,0 +1,10 @@
+
+#include <jni.h>
+#include <stdio.h>
+
+#include "B.h"
+
+JNIEXPORT void JNICALL Java_B_printName(JNIEnv *, jobject)
+{
+ printf("B\n");
+}