nativewrapper.h 204 B

1234567891011
  1. #ifndef NATIVEWRAPPER_H
  2. #define NATIVEWRAPPER_H
  3. #include <jni.h>
  4. void *getNativeObject( JNIEnv *env, jobject qtcomponent );
  5. void setNativeObject( JNIEnv *env, jobject qtcomponent, void *ptr );
  6. #endif