- Fix build.

svn path=/trunk/; revision=65674
This commit is contained in:
James Tabor 2014-12-15 01:41:57 +00:00
parent 225783c294
commit c181d8e316

View file

@ -1419,6 +1419,27 @@ IntTrackMouseMove(PWND pwndTrack, PDESKTOP pDesk, PMSG msg, USHORT hittest)
}
}
PWND FASTCALL
co_IntFindChildWindowToOwner(PWND Root, PWND Owner)
{
PWND Ret;
PWND Child, OwnerWnd;
for(Child = Root->spwndChild; Child; Child = Child->spwndNext)
{
OwnerWnd = Child->spwndOwner;
if(!OwnerWnd)
continue;
if(OwnerWnd == Owner)
{
Ret = Child;
return Ret;
}
}
return NULL;
}
BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, UINT first, UINT last)
{
MSG clk_msg;