AUI under wxOS2 build fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5041,12 +5041,20 @@ wxWindow* wxFindWindowAtPoint(const wxPoint& rPt)
|
||||
// Get the current mouse position.
|
||||
wxPoint wxGetMousePosition()
|
||||
{
|
||||
POINTL vPt;
|
||||
POINTL vPt;
|
||||
|
||||
::WinQueryPointerPos(HWND_DESKTOP, &vPt);
|
||||
return wxPoint(vPt.x, vPt.y);
|
||||
}
|
||||
|
||||
wxMouseState wxGetMouseState()
|
||||
{
|
||||
wxMouseState ms;
|
||||
// TODO
|
||||
return ms;
|
||||
}
|
||||
|
||||
|
||||
wxWindowOS2* FindWindowForMouseEvent( wxWindow* pWin,
|
||||
short* WXUNUSED(pnX),
|
||||
short* WXUNUSED(pnY) )
|
||||
|
Reference in New Issue
Block a user