mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
11 lines
204 B
C
11 lines
204 B
C
|
#ifndef NATIVEWRAPPER_H
|
||
|
#define NATIVEWRAPPER_H
|
||
|
|
||
|
#include <jni.h>
|
||
|
|
||
|
void *getNativeObject( JNIEnv *env, jobject qtcomponent );
|
||
|
|
||
|
void setNativeObject( JNIEnv *env, jobject qtcomponent, void *ptr );
|
||
|
|
||
|
#endif
|