Is casting a TPOINT
argument to LPPOINT
needed or not in the following scenario:
TPOINT point;
ClientToScreen(somehwnd, (LPPOINT) &point);
Or is the following enough:
TPOINT point;
ClientToScreen(somehwnd, &point);
This Win32 document shows it is needed, whereas this Win32 document does not use a cast.