Fix parameter type of setWindowTaskbarBadgeString in internal.h

This commit is contained in:
ws909 2023-03-06 13:32:58 +01:00
parent cf2d81d116
commit 96492508b0

View File

@ -708,7 +708,7 @@ struct _GLFWplatform
void (*setWindowIcon)(_GLFWwindow*,int,const GLFWimage*);
void (*setWindowTaskbarProgress)(_GLFWwindow*,const int,double);
void (*setWindowTaskbarBadge)(_GLFWwindow*,int);
void (*setWindowTaskbarBadgeString)(_GLFWwindow*,int);
void (*setWindowTaskbarBadgeString)(_GLFWwindow*,const char* string);
void (*getWindowPos)(_GLFWwindow*,int*,int*);
void (*setWindowPos)(_GLFWwindow*,int,int);
void (*getWindowSize)(_GLFWwindow*,int*,int*);