Added relative mouse move support to win32.

This commit is contained in:
crs
2004-05-02 08:04:15 +00:00
parent 0f45face21
commit 9c35a45a2c
4 changed files with 63 additions and 27 deletions

View File

@@ -507,6 +507,12 @@ CMSWindowsScreen::fakeMouseMove(SInt32 x, SInt32 y) const
m_desks->fakeMouseMove(x, y);
}
void
CMSWindowsScreen::fakeMouseRelativeMove(SInt32 dx, SInt32 dy) const
{
m_desks->fakeMouseRelativeMove(dx, dy);
}
void
CMSWindowsScreen::fakeMouseWheel(SInt32 delta) const
{