DoesContain = PointInImage( Point, Image )
D0 D0 A0
BOOL PointInImage( struct Point, struct Image * );
Tests whether a point is properly contained in an image. The intention of this is to provide custom gadgets a means to delegate "image mask" processing to the Image, where it belongs (superseding things like BOOLMASK). After all, a rounded rect image with a drop shadow knows more about what points are inside it than anybody else should.
For traditional Intuition Images, this routine checks if the point is in the Image box (LeftEdge/RightEdge/Width/Height).
Only applies to the first image, does not follow NextImage linked list. This might be preferred.