fome-fw/unit_tests/native/native_impl.cpp

18 lines
395 B
C++
Raw Normal View History

2022-02-26 09:51:50 -08:00
/*
* native_impl.cpp
*
* @date Feb 26, 2022
* @author Andrey Belomutskiy, (c) 2012-2022
*/
2022-02-26 14:48:07 -08:00
#include "pch.h"
#include "com_rusefi_native__EngineLogic.h"
2022-02-26 09:51:50 -08:00
2022-02-26 14:48:07 -08:00
JNIEXPORT jstring JNICALL Java_com_rusefi_native_1_EngineLogic_getVersion(JNIEnv * env, jobject) {
const char msg[60] = "Hello from unit tests";
const char* fileName = msg;
jstring result = env->NewStringUTF(msg);
return result;
}
2022-02-26 09:51:50 -08:00