glfwPostEmptyEvent win32 implementation

This commit is contained in:
Kyle Gretchev 2014-02-14 23:32:44 -05:00
parent 271ce11509
commit 01284236d6

View File

@ -1181,6 +1181,8 @@ void _glfwPlatformWaitEvents(void)
void _glfwPlatformPostEmptyEvent(void)
{
_GLFWwindow* window = _glfw.windowListHead;
SendMessage(window->win32.handle, 0, 0, 0);
}
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos)