11 lines
204 B
C
Raw Normal View History

2021-07-16 22:11:37 -05:00
#ifndef NATIVEWRAPPER_H
#define NATIVEWRAPPER_H
#include <jni.h>
void *getNativeObject( JNIEnv *env, jobject qtcomponent );
void setNativeObject( JNIEnv *env, jobject qtcomponent, void *ptr );
#endif