Important: The information in this document is obsolete and should not be used for new development.
StdComment
TheStdComment
procedure is QuickDraw's standard low-level routine for processing a picture comment.
PROCEDURE StdComment (kind,dataSize:\xDDInteger; dataHandle:\xDDHandle);
kind
- The type of comment. See Appendix
A
in this book for a list of the standard constants (and the values they represent)used to specify common picture comment types.
dataSize
- The size of additional data.
dataHandle
A handle to additional data.DESCRIPTION
Thekind
parameter identifies the type of comment. ThedataHandle
parameter takes a handle to additional data, and thedataSize
parameter specifies the size of that data in bytes. If there's no additional data for the comment, the value of thedataHandle
parameter isNIL
and the value of thedataSize
parameter is 0. TheStdComment
procedure simply ignores the comment.SPECIAL CONSIDERATIONS
TheStdComment
procedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.SEE ALSO
Picture comments are described in detail in Appendix B, "Using Picture Comments for Printing."