internal static extern void glfwSetCursorPos(GlfwWindowPtr window, double xpos, double ypos);
internal static extern int glfwGetWindowAttrib(GlfwWindowPtr window, int param);
internal static extern IntPtr glfwGetWindowUserPointer(GlfwWindowPtr window);
internal static extern void glfwRestoreWindow(GlfwWindowPtr window);
internal static extern void glfwHideWindow(GlfwWindowPtr window);
internal static extern void glfwGetWindowPos(GlfwWindowPtr window, out int xpos, out int ypos);
internal static extern void glfwSetWindowSize(GlfwWindowPtr window, int width, int height);
internal static extern void glfwSetClipboardString(GlfwWindowPtr window, [MarshalAs(UnmanagedType.LPStr)] string @string);
internal static extern sbyte *glfwGetClipboardString(GlfwWindowPtr window);
internal static extern GlfwCursorEnterFun glfwSetCursorEnterCallback(GlfwWindowPtr window, GlfwCursorEnterFun cbfun);
internal static extern GlfwScrollFun glfwSetScrollCallback(GlfwWindowPtr window, GlfwScrollFun cbfun);
internal static extern GlfwMouseButtonFun glfwSetMouseButtonCallback(GlfwWindowPtr window, GlfwMouseButtonFun cbfun);
internal static extern GlfwCharFun glfwSetCharCallback(GlfwWindowPtr window, GlfwCharFun cbfun);
internal static extern GlfwKeyFun glfwSetKeyCallback(GlfwWindowPtr window, GlfwKeyFun cbfun);
internal static extern void glfwSetWindowShouldClose(GlfwWindowPtr window, int value);
internal static extern void glfwMakeContextCurrent(GlfwWindowPtr window);
internal static extern void glfwSetWindowTitle(GlfwWindowPtr window, [MarshalAs(UnmanagedType.LPStr)] string title);
internal static extern void glfwSwapBuffers(GlfwWindowPtr window);
internal static extern void glfwSetWindowPos(GlfwWindowPtr window, int xpos, int ypos);
internal static extern void glfwGetFramebufferSize(GlfwWindowPtr window, out int width, out int height);
internal static extern void glfwIconifyWindow(GlfwWindowPtr window);
internal static extern GlfwFramebufferSizeFun glfwSetFramebufferSizeCallback(GlfwWindowPtr window, GlfwFramebufferSizeFun cbfun);
internal static extern void glfwShowWindow(GlfwWindowPtr window);
internal static extern GlfwWindowPtr glfwCreateWindow(int width, int height, [MarshalAs(UnmanagedType.LPStr)] string title, GlfwMonitorPtr monitor, GlfwWindowPtr share);
internal static extern GlfwMonitorPtr glfwGetWindowMonitor(GlfwWindowPtr window);
internal static extern void glfwDestroyWindow(GlfwWindowPtr window);
internal static extern void glfwSetWindowUserPointer(GlfwWindowPtr window, IntPtr pointer);
internal static extern int glfwWindowShouldClose(GlfwWindowPtr window);
internal static extern GlfwWindowPosFun glfwSetWindowPosCallback(GlfwWindowPtr window, GlfwWindowPosFun cbfun);
internal static extern int glfwGetMouseButton(GlfwWindowPtr window, MouseButton button);