abstraction step 3
This commit is contained in:
parent
62a4079957
commit
591f26cb90
@ -33,6 +33,7 @@ void EWOL_NativeResize(int w, int h );
|
|||||||
void EWOL_NativeDone(void);
|
void EWOL_NativeDone(void);
|
||||||
void EWOL_NativeEventInputMotion(int pointerID, float x, float y );
|
void EWOL_NativeEventInputMotion(int pointerID, float x, float y );
|
||||||
void EWOL_NativeEventInputState(int pointerID, bool isUp, float x, float y );
|
void EWOL_NativeEventInputState(int pointerID, bool isUp, float x, float y );
|
||||||
|
void EWOL_NativeEventUnknow(int ID);
|
||||||
void EWOL_NativeParamSetArchiveDir(int mode, const char* str);
|
void EWOL_NativeParamSetArchiveDir(int mode, const char* str);
|
||||||
void EWOL_NativeApplicationInit(void);
|
void EWOL_NativeApplicationInit(void);
|
||||||
void EWOL_NativeApplicationUnInit(void);
|
void EWOL_NativeApplicationUnInit(void);
|
||||||
@ -68,6 +69,12 @@ extern "C"
|
|||||||
EWOL_NativeEventInputState(pointerID, isUp, x, y);
|
EWOL_NativeEventInputState(pointerID, isUp, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Java_com___PROJECT_VENDOR_____PROJECT_PACKAGE___EwolGLSurfaceView_nativeEventUnknow( JNIEnv* env, jobject thiz, jint ID)
|
||||||
|
{
|
||||||
|
EWOL_NativeEventUnknow(ID);
|
||||||
|
}
|
||||||
|
|
||||||
void Java_com___PROJECT_VENDOR_____PROJECT_PACKAGE___EwolGLSurfaceView_nativeParamSetArchiveDir( JNIEnv* env, jobject thiz, jint mode, jstring myString)
|
void Java_com___PROJECT_VENDOR_____PROJECT_PACKAGE___EwolGLSurfaceView_nativeParamSetArchiveDir( JNIEnv* env, jobject thiz, jint mode, jstring myString)
|
||||||
{
|
{
|
||||||
const char* str = env->GetStringUTFChars(myString,0);
|
const char* str = env->GetStringUTFChars(myString,0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user