In Rect.h there are prototypes of this sort:

        extern void RctCopyRectangle(const RectanglePtr srcRect, const
RectanglePtr dstRect)

Should this prototype, for instance, be:

        extern void RctCopyRectangle(const RectangleType *srcRect, RectanglePtr
dstRect)
 

GCC doesn't like "const RectanglePtr" (or the equivalent, "RecanglePtr
const") to be used in parameters that actually are given real, const
data. Anyway, the important thing is for the const's to be meaningful to
human and machine, eh?

Alex Robinson
[EMAIL PROTECTED]

-eom-

Reply via email to