]> granicus.if.org Git - imagemagick/commitdiff
Several comment changes.
authorDirk Lemstra <dirk@git.imagemagick.org>
Sat, 2 Sep 2017 09:29:22 +0000 (11:29 +0200)
committerDirk Lemstra <dirk@git.imagemagick.org>
Sat, 2 Sep 2017 09:29:22 +0000 (11:29 +0200)
MagickCore/blob.c

index 514d96ebc2d889503dbf95b481ae3c3f4b0835f9..213fede0f93b713d20318a9d0974f3a34b090f3b 100644 (file)
@@ -269,8 +269,7 @@ MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob,
   blob_info->data=(unsigned char *) blob;
   blob_info->mapped=MagickFalse;
 }
-
-
+\f
 /*
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %                                                                             %
@@ -4663,9 +4662,9 @@ MagickExport MagickBooleanType SetBlobExtent(Image *image,
 %
 %  A description of each parameter follows:
 %
-%    o custom_stream: your custom stream.
+%    o custom_stream: the custom stream info.
 %
-%    o void: your data.
+%    o data: an object containing information about the custom stream.
 %
 */
 MagickExport void SetCustomStreamData(CustomStreamInfo *custom_stream,
@@ -4696,9 +4695,9 @@ MagickExport void SetCustomStreamData(CustomStreamInfo *custom_stream,
 %
 %  A description of each parameter follows:
 %
-%    o custom_stream: your custom stream.
+%    o custom_stream: the custom stream info.
 %
-%    o reader: your custom stream reader.
+%    o reader: a function to read from the stream.
 %
 */
 MagickExport void SetCustomStreamReader(CustomStreamInfo *custom_stream,
@@ -4729,9 +4728,9 @@ MagickExport void SetCustomStreamReader(CustomStreamInfo *custom_stream,
 %
 %  A description of each parameter follows:
 %
-%    o custom_stream: your custom stream.
+%    o custom_stream: the custom stream info.
 %
-%    o seeker: your custom stream seeker.
+%    o seeker: a function to seek in the custom stream.
 %
 */
 MagickExport void SetCustomStreamSeeker(CustomStreamInfo *custom_stream,
@@ -4762,9 +4761,9 @@ MagickExport void SetCustomStreamSeeker(CustomStreamInfo *custom_stream,
 %
 %  A description of each parameter follows:
 %
-%    o custom_stream: your custom stream.
+%    o custom_stream: the custom stream info.
 %
-%    o teller: your custom stream teller.
+%    o teller: a function to set the position in the stream.
 %
 */
 MagickExport void SetCustomStreamTeller(CustomStreamInfo *custom_stream,
@@ -4795,9 +4794,9 @@ MagickExport void SetCustomStreamTeller(CustomStreamInfo *custom_stream,
 %
 %  A description of each parameter follows:
 %
-%    o custom_stream: your custom stream.
+%    o custom_stream: the custom stream info.
 %
-%    o writer: your custom stream writer.
+%    o writer: a function to write to the custom stream.
 %
 */
 MagickExport void SetCustomStreamWriter(CustomStreamInfo *custom_stream,