public static extern int glfwGetInputMode(WindowPtr window, InputMode mode);
 public static extern void glfwGetWindowPos(WindowPtr window, out int x, out int y);
 public static extern void glfwGetWindowSize(WindowPtr window, out int width, out int height);
 public static extern bool glfwWindowShouldClose(WindowPtr window);
 public static extern void glfwSetWindowTitle(WindowPtr window, string title);
 public static extern void glfwSwapBuffers(WindowPtr window);
 public static extern WindowPtr glfwCreateWindow(
     int width, int height,
     string title,
     MonitorPtr monitor, WindowPtr window
     );
 public static extern void glfwSetCursor(WindowPtr window, Cursor cursor);
 public static extern IntPtr glfwSetKeyCallback(WindowPtr window, KeyCallback callback);
 public static extern void glfwGetCursorPos(WindowPtr window, out double x, out double y);
 public static extern void glfwSetCursorPos(WindowPtr window, double x, double y);
 public static extern KeyAction glfwGetMouseButton(WindowPtr window, MouseButton button);
 public static extern KeyAction glfwGetKey(WindowPtr window, KeyCode key);
 public static extern void glfwSetInputMode(WindowPtr window, InputMode mode, int value);
 public static extern byte *glfwGetClipboardString(WindowPtr window);
 public static extern IntPtr glfwSetCharModsCallback(WindowPtr window, CharModsCallback callback);
 public static extern void glfwMakeContextCurrent(WindowPtr window);
 public static extern IntPtr glfwSetMouseButtonCallback(WindowPtr window, MouseButtonCallback callback);
 public static extern int glfwCreateWindowSurface(IntPtr instance, WindowPtr window, IntPtr allocator, out ulong surface);
 public static extern IntPtr glfwSetCursorEnterCallback(WindowPtr window, CursorEnterCallback callback);
 public static extern void glfwDestroyWindow(WindowPtr window);
 public static extern IntPtr glfwSetScrollCallback(WindowPtr window, ScrollCallback callback);
 public static extern void glfwSetWindowShouldClose(WindowPtr window, bool value);
 public static extern IntPtr glfwSetDropCallback(WindowPtr window, FileDropCallback callback);
 public static extern void glfwSetWindowIcon(WindowPtr window, int count, NativeImage *images);
 public static extern IntPtr glfwSetJoystickCallback(WindowPtr window, JoystickConnectionCallback callback);
 public static extern void glfwSetWindowPos(WindowPtr window, int x, int y);
 public static extern void glfwSetClipboardString(WindowPtr window, string s);
 public static extern void glfwSetWindowSizeLimits(
     WindowPtr window,
     int minWidth, int minHeight,
     int maxWidth, int maxHeight
     );
 public static extern IntPtr glfwSetFramebufferSizeCallback(WindowPtr window, FramebufferSizeCallback callback);