Dana
2025-12-24 2d5c44a43094c9c4ccdc924e93c17228fc192f7b
1
2
3
4
5
6
7
8
9
10
11
12
#include <jni.h>
#include <string>
 
 
 
extern "C"
JNIEXPORT jstring JNICALL
Java_com_anyun_libusbcamera_UsbCamera_stringFromJNI(JNIEnv *env, jobject instance) {
 
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}