Added some stubs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21994 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2003-07-15 14:55:52 +00:00
parent 11b352343b
commit 7c9428abfd

View File

@ -531,3 +531,15 @@ wxWindow *wxGetActiveWindow()
return NULL;
}
wxPoint wxGetMousePosition()
{
// TODO
return wxDefaultPosition;
}
wxWindow* wxFindWindowAtPointer(wxPoint& pt)
{
pt = wxGetMousePosition();
return NULL;
}