Along the lines of my earlier question, the MSDN for WindowFromPoint and ChildWindowFromPoint say the argument is a Point.
But in the Win32API.inc, both declarations separate the x and y, as in this extraction:
How can PowerBASIC make such a change in the argument? I'm sure it's not PB Inc, just my understanding of how it works.
(Jose, I'm sure you'll have the answer)
But in the Win32API.inc, both declarations separate the x and y, as in this extraction:
Code:
DECLARE FUNCTION ChildWindowFromPoint LIB "USER32.DLL" ALIAS "ChildWindowFromPoint" (BYVAL hwndParent AS DWORD, BYVAL x AS LONG, BYVAL y AS LONG) AS DWORD
(Jose, I'm sure you'll have the answer)
Comment