Use the correct pointer type instead of void*

This commit is contained in:
Luflosi
2019-12-25 11:51:40 +01:00
parent 4cd5de78c7
commit 46dd648380
2 changed files with 2 additions and 2 deletions

2
kitty/glfw-wrapper.h generated
View File

@@ -2083,7 +2083,7 @@ typedef GLFWapplicationwillfinishlaunchingfun (*glfwSetApplicationWillFinishLaun
glfwSetApplicationWillFinishLaunching_func glfwSetApplicationWillFinishLaunching_impl;
#define glfwSetApplicationWillFinishLaunching glfwSetApplicationWillFinishLaunching_impl
typedef void (*glfwGetCocoaKeyEquivalent_func)(int, int, void*, void*);
typedef void (*glfwGetCocoaKeyEquivalent_func)(int, int, void*, int*);
glfwGetCocoaKeyEquivalent_func glfwGetCocoaKeyEquivalent_impl;
#define glfwGetCocoaKeyEquivalent glfwGetCocoaKeyEquivalent_impl