'Call JNI exported method from C++

In my c++ there is a JNI exported method so that I can use it in my Java code:

JNIEXPORT int JNICALL
Java_com_wessel_QC_privateMethod();

But now I want to call that function from the C++ code. But how is that possible?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source