mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
11 lines
134 B
C++
11 lines
134 B
C++
|
|
#include <jni.h>
|
|
#include <stdio.h>
|
|
|
|
#include "B.h"
|
|
|
|
JNIEXPORT void JNICALL Java_B_printName(JNIEnv *, jobject)
|
|
{
|
|
printf("B\n");
|
|
}
|