mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Fixed X11 function signature
This commit is contained in:
parent
ec03ae4d05
commit
7793239932
@ -1169,6 +1169,8 @@ void _glfwSetWindowTaskbarProgressCocoa(_GLFWwindow* window, int progressState,
|
|||||||
|
|
||||||
void _glfwSetWindowTaskbarBadgeCocoa(_GLFWwindow* window, int count)
|
void _glfwSetWindowTaskbarBadgeCocoa(_GLFWwindow* window, int count)
|
||||||
{
|
{
|
||||||
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
||||||
|
"Cocoa: Setting the taskbar progress badge is not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetWindowPosCocoa(_GLFWwindow* window, int* xpos, int* ypos)
|
void _glfwGetWindowPosCocoa(_GLFWwindow* window, int* xpos, int* ypos)
|
||||||
|
@ -1913,6 +1913,8 @@ void _glfwSetWindowTaskbarProgressWayland(_GLFWwindow* window, const int progres
|
|||||||
|
|
||||||
void _glfwSetWindowTaskbarBadgeWayland(_GLFWwindow* window, int count)
|
void _glfwSetWindowTaskbarBadgeWayland(_GLFWwindow* window, int count)
|
||||||
{
|
{
|
||||||
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
||||||
|
"Wayland: Setting the taskbar progress badge is not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetWindowPosWayland(_GLFWwindow* window, int* xpos, int* ypos)
|
void _glfwGetWindowPosWayland(_GLFWwindow* window, int* xpos, int* ypos)
|
||||||
|
@ -2161,8 +2161,10 @@ void _glfwSetWindowTaskbarProgressX11(_GLFWwindow* window, int progressState, do
|
|||||||
_glfwUpdateTaskbarProgressDBusPOSIX(progressVisible, value);
|
_glfwUpdateTaskbarProgressDBusPOSIX(progressVisible, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwSetWindowTaskbarProgressX11(_GLFWwindow* window, int count)
|
void _glfwSetWindowTaskbarBadgeX11(_GLFWwindow* window, int count)
|
||||||
{
|
{
|
||||||
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
||||||
|
"X11: Setting the taskbar progress badge is not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetWindowPosX11(_GLFWwindow* window, int* xpos, int* ypos)
|
void _glfwGetWindowPosX11(_GLFWwindow* window, int* xpos, int* ypos)
|
||||||
|
Loading…
Reference in New Issue
Block a user