mirror of
https://github.com/2003scape/deep-c-rsc.git
synced 2024-03-22 05:49:51 -04: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
|