mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Fix remaining incorrect function signatures for SetWindowTaskbarBadgeString
This commit is contained in:
parent
96492508b0
commit
e84ade32ac
@ -232,7 +232,7 @@ void _glfwSetWindowTitleCocoa(_GLFWwindow* window, const char* title);
|
||||
void _glfwSetWindowIconCocoa(_GLFWwindow* window, int count, const GLFWimage* images);
|
||||
void _glfwSetWindowTaskbarProgressCocoa(_GLFWwindow* window, int progressState, double value);
|
||||
void _glfwSetWindowTaskbarBadgeCocoa(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringCocoa(_GLFWwindow* window, const char* count);
|
||||
void _glfwSetWindowTaskbarBadgeStringCocoa(_GLFWwindow* window, const char* string);
|
||||
void _glfwGetWindowPosCocoa(_GLFWwindow* window, int* xpos, int* ypos);
|
||||
void _glfwSetWindowPosCocoa(_GLFWwindow* window, int xpos, int ypos);
|
||||
void _glfwGetWindowSizeCocoa(_GLFWwindow* window, int* width, int* height);
|
||||
|
@ -91,7 +91,7 @@ void _glfwSetWindowTitleNull(_GLFWwindow* window, const char* title);
|
||||
void _glfwSetWindowIconNull(_GLFWwindow* window, int count, const GLFWimage* images);
|
||||
void _glfwSetWindowTaskbarProgressNull(_GLFWwindow* window, int progressState, double value);
|
||||
void _glfwSetWindowTaskbarBadgeNull(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringNull(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringNull(_GLFWwindow* window, const char* string);
|
||||
void _glfwSetWindowMonitorNull(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
||||
void _glfwGetWindowPosNull(_GLFWwindow* window, int* xpos, int* ypos);
|
||||
void _glfwSetWindowPosNull(_GLFWwindow* window, int xpos, int ypos);
|
||||
|
@ -195,7 +195,7 @@ void _glfwSetWindowTaskbarBadgeNull(_GLFWwindow* window, int count)
|
||||
{
|
||||
}
|
||||
|
||||
void _glfwSetWindowTaskbarBadgeStringNull(_GLFWwindow* window, int count)
|
||||
void _glfwSetWindowTaskbarBadgeStringNull(_GLFWwindow* window, const char* string)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -620,7 +620,7 @@ void _glfwSetWindowTitleWin32(_GLFWwindow* window, const char* title);
|
||||
void _glfwSetWindowIconWin32(_GLFWwindow* window, int count, const GLFWimage* images);
|
||||
void _glfwSetWindowTaskbarProgressWin32(_GLFWwindow* window, int progressState, double value);
|
||||
void _glfwSetWindowTaskbarBadgeWin32(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringWin32(_GLFWwindow* window, const char* count);
|
||||
void _glfwSetWindowTaskbarBadgeStringWin32(_GLFWwindow* window, const char* string);
|
||||
void _glfwGetWindowPosWin32(_GLFWwindow* window, int* xpos, int* ypos);
|
||||
void _glfwSetWindowPosWin32(_GLFWwindow* window, int xpos, int ypos);
|
||||
void _glfwGetWindowSizeWin32(_GLFWwindow* window, int* width, int* height);
|
||||
|
@ -448,7 +448,7 @@ void _glfwSetWindowTitleWayland(_GLFWwindow* window, const char* title);
|
||||
void _glfwSetWindowIconWayland(_GLFWwindow* window, int count, const GLFWimage* images);
|
||||
void _glfwSetWindowTaskbarProgressWayland(_GLFWwindow* window, int progressState, double value);
|
||||
void _glfwSetWindowTaskbarBadgeWayland(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringWayland(_GLFWwindow* window, const char* count);
|
||||
void _glfwSetWindowTaskbarBadgeStringWayland(_GLFWwindow* window, const char* string);
|
||||
void _glfwGetWindowPosWayland(_GLFWwindow* window, int* xpos, int* ypos);
|
||||
void _glfwSetWindowPosWayland(_GLFWwindow* window, int xpos, int ypos);
|
||||
void _glfwGetWindowSizeWayland(_GLFWwindow* window, int* width, int* height);
|
||||
|
@ -907,7 +907,7 @@ void _glfwSetWindowTitleX11(_GLFWwindow* window, const char* title);
|
||||
void _glfwSetWindowIconX11(_GLFWwindow* window, int count, const GLFWimage* images);
|
||||
void _glfwSetWindowTaskbarProgressX11(_GLFWwindow* window, int progressState, double value);
|
||||
void _glfwSetWindowTaskbarBadgeX11(_GLFWwindow* window, int count);
|
||||
void _glfwSetWindowTaskbarBadgeStringX11(_GLFWwindow* window, const char* count);
|
||||
void _glfwSetWindowTaskbarBadgeStringX11(_GLFWwindow* window, const char* string);
|
||||
void _glfwGetWindowPosX11(_GLFWwindow* window, int* xpos, int* ypos);
|
||||
void _glfwSetWindowPosX11(_GLFWwindow* window, int xpos, int ypos);
|
||||
void _glfwGetWindowSizeX11(_GLFWwindow* window, int* width, int* height);
|
||||
|
Loading…
Reference in New Issue
Block a user