summaryrefslogtreecommitdiffstats
path: root/make/config/nativewindow/win32-CustomJavaCode.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-22 12:51:52 +0100
committerSven Gothel <[email protected]>2010-11-22 12:51:52 +0100
commita3f593158b25f78027504129c343b9aab433183d (patch)
tree78b1ce61415becc29d7505228b768fc84f48c824 /make/config/nativewindow/win32-CustomJavaCode.java
parent350b35a202fcc268b9d732b305418b2e76746501 (diff)
NativeWindow/Windows: Fix CreateDummyWindow gluegen and usage
NativeWindow+JOGL/Windows: Complete Opaque types
Diffstat (limited to 'make/config/nativewindow/win32-CustomJavaCode.java')
-rw-r--r--make/config/nativewindow/win32-CustomJavaCode.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/make/config/nativewindow/win32-CustomJavaCode.java b/make/config/nativewindow/win32-CustomJavaCode.java
index cd5b00b79..54a7fa53a 100644
--- a/make/config/nativewindow/win32-CustomJavaCode.java
+++ b/make/config/nativewindow/win32-CustomJavaCode.java
@@ -17,6 +17,10 @@
return hInstance;
}
+ public static long CreateDummyWindow(int x, int y, int width, int height) {
+ return CreateDummyWindow0(getModuleHandle(), x, y, width, height);
+ }
+
public static Point GetRelativeLocation(long src_win, long dest_win, int src_x, int src_y) {
return (Point) GetRelativeLocation0(src_win, dest_win, src_x, src_y);
}