From c31de751119a73450b1efda690d8e58c2d23816a Mon Sep 17 00:00:00 2001 From: Alex Sanchez-Stern Date: Sun, 13 Oct 2024 14:41:41 -0700 Subject: [PATCH] Don't expose the function pointer symbol directly for encapsulation --- include/GLFW/glfw3native.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/GLFW/glfw3native.h b/include/GLFW/glfw3native.h index 4cbe5c45..c266c4ad 100644 --- a/include/GLFW/glfw3native.h +++ b/include/GLFW/glfw3native.h @@ -444,7 +444,6 @@ GLFWAPI void glfwSetX11SelectionString(const char* string); GLFWAPI const char* glfwGetX11SelectionString(void); #include -extern void (*handleSelectionRequest)(XEvent*); void (*getSelectionRequestHandler(void))(XEvent*); void setSelectionRequestHandler(void (*handler)(XEvent*)); Display* getGLFWDisplay(void);