mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-17 11:31:00 +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
|