diff options
author | Kenneth Russel <[email protected]> | 2001-12-07 08:30:31 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2001-12-07 08:30:31 +0000 |
commit | e2e8e5258f79a25fdc6dad9392e290a843fe3627 (patch) | |
tree | 8ba4b48b8b5d9ff6aaccfb91975566eca4fa864c /CNativeCode/OpenGL_X11.c | |
parent | 8fdc4baaee82a63247a9f4203dace4ee910881bb (diff) |
Removed link-time dependency on JAWT to solve PATH problems
Diffstat (limited to 'CNativeCode/OpenGL_X11.c')
-rw-r--r-- | CNativeCode/OpenGL_X11.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/CNativeCode/OpenGL_X11.c b/CNativeCode/OpenGL_X11.c index f7e0795..6d0dec5 100644 --- a/CNativeCode/OpenGL_X11.c +++ b/CNativeCode/OpenGL_X11.c @@ -84,11 +84,20 @@ static jboolean verbose = JNI_FALSE; +JNIEXPORT jboolean JNICALL Java_gl4java_GLContext_loadJAWT0 +(JNIEnv *env, jclass unused, jstring str) +{ + (void)env; + (void)unused; + (void)str; + return JNI_FALSE; +} + JNIEXPORT jboolean JNICALL -Java_gl4java_GLContext_useJAWT( JNIEnv *env, jobject obj ) +Java_gl4java_GLContext_useJAWT( JNIEnv *env, jclass unused ) { (void)env; - (void)obj; + (void)unused; return JNI_FALSE; } |