-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLFWNativeX11.java
42 lines (33 loc) · 1.35 KB
/
GLFWNativeX11.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package org.lwjgl.glfw;
import org.lwjgl.system.NativeType;
import java.nio.ByteBuffer;
import javax.annotation.Nullable;
public class GLFWNativeX11 {
@NativeType("Display *")
public static long glfwGetX11Display() {
throw new UnsupportedOperationException("Not implemented");
}
@NativeType("RRCrtc")
public static long glfwGetX11Adapter(@NativeType("GLFWmonitor *") long monitor) {
throw new UnsupportedOperationException("Not implemented");
}
@NativeType("RROutput")
public static long glfwGetX11Monitor(@NativeType("GLFWmonitor *") long monitor) {
throw new UnsupportedOperationException("Not implemented");
}
@NativeType("Window")
public static long glfwGetX11Window(@NativeType("GLFWwindow *") long window) {
throw new UnsupportedOperationException("Not implemented");
}
public static void glfwSetX11SelectionString(@NativeType("char const *") ByteBuffer string) {
throw new UnsupportedOperationException("Not implemented");
}
public static void glfwSetX11SelectionString(@NativeType("char const *") CharSequence string) {
throw new UnsupportedOperationException("Not implemented");
}
@Nullable
@NativeType("char const *")
public static String glfwGetX11SelectionString() {
throw new UnsupportedOperationException("Not implemented");
}
}