Dana
2025-11-30 efda44a3808207db37921cf9237a8b7656352486
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());
}