1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-24 21:19:12 +08:00
2018-01-22 17:15:59 +01:00

11 lines
133 B
C++

#include <jni.h>
#include <stdio.h>
#include "D.h"
JNIEXPORT void JNICALL Java_D_printName(JNIEnv*, jobject)
{
printf("D\n");
}