• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/morefile/

Lines Matching refs:comment

198 										  Str255 comment);
1017 ConstStr255Param comment)
1030 pb.ioDTBuffer = (Ptr)&comment[1];
1031 /* Truncate the comment to 200 characters just in case */
1033 if ( comment[0] <= 200 )
1035 pb.ioDTReqCount = comment[0];
1049 ConstStr255Param comment)
1051 return (DTSetComment(spec->vRefNum, spec->parID, spec->name, comment));
1059 ** Get the comment ID number for the Desktop file's 'FCMT' resource ID from
1080 ** Get a file or directory's Finder comment field (if any) from the
1086 Str255 comment)
1096 /* Get the comment ID number */
1100 if ( commentID != 0 ) /* commentID == 0 means there's no comment */
1120 /* Get the comment resource */
1126 BlockMoveData(*commentHandle, comment, *commentHandle[0] + 1);
1130 error = afpItemNotFound; /* no comment available */
1135 error = afpItemNotFound; /* no comment available */
1155 error = afpItemNotFound; /* no comment available */
1167 Str255 comment)
1174 if (comment != NULL)
1176 comment[0] = 0; /* return nothing by default */
1189 pb.ioDTBuffer = (Ptr)&comment[1];
1195 ** 255 characters. Make sure the comment buffer is a Str255
1201 ** ioDTReqCount and always return the full comment --
1203 ** return up to ioDTReqCount characters of the comment.
1209 comment[0] = (unsigned char)pb.ioDTActCount;
1216 error = GetCommentFromDesktopFile(vRefNum, dirID, name, comment);
1234 Str255 comment)
1236 return (DTGetComment(spec->vRefNum, spec->parID, spec->name, comment));
1250 Str255 comment;
1252 error = DTGetComment(srcVRefNum, srcDirID, srcName, comment);
1253 if ( (error == noErr) && (comment[0] > 0) )
1255 error = DTSetComment(dstVRefNum, dstDirID, dstName, comment);