mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-27 03:14:21 +00:00
11 lines
133 B
C++
11 lines
133 B
C++
|
|
#include <jni.h>
|
|
#include <stdio.h>
|
|
|
|
#include "E.h"
|
|
|
|
JNIEXPORT void JNICALL Java_E_printName(JNIEnv*, jobject)
|
|
{
|
|
printf("E\n");
|
|
}
|