Correct functions definitions as per bug

http://bugzilla.remotesensing.org/show_bug.cgi?id=1319
This commit is contained in:
Andrey Kiselev 2006-10-13 07:22:01 +00:00
parent b560709ed0
commit 24c0091bb2
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
.\" $Id: TIFFReadEncodedTile.3tiff,v 1.2 2005-11-02 11:07:18 dron Exp $
.\" $Id: TIFFReadEncodedTile.3tiff,v 1.3 2006-10-13 07:22:01 dron Exp $
.\"
.\" Copyright (c) 1988-1997 Sam Leffler
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
@ -23,7 +23,7 @@
.\" OF THIS SOFTWARE.
.\"
.if n .po 0
.TH TIFFReadEncodedTile 3TIFF "October 15, 1995" "libtiff"
.TH TIFFReadEncodedTile 3TIFF "October 13, 2006" "libtiff"
.SH NAME
TIFFReadEncodedTile \- read and decode a tile of data from an open
.SM TIFF
@ -31,7 +31,7 @@ file
.SH SYNOPSIS
.B "#include <tiffio.h>"
.sp
.BI "int TIFFReadEncodedTile(TIFF *" tif ", u_long " tile ", u_char *" buf ", u_long " size ")"
.BI "int TIFFReadEncodedTile(TIFF *" tif ", ttile_t " tile ", tdata_t " buf ", tsize_t " size ")"
.SH DESCRIPTION
Read the specified tile of data and place up to
.I size

View File

@ -1,4 +1,4 @@
.\" $Id: TIFFReadRGBAImage.3tiff,v 1.3 2005-11-02 11:07:18 dron Exp $
.\" $Id: TIFFReadRGBAImage.3tiff,v 1.4 2006-10-13 07:22:01 dron Exp $
.\"
.\" Copyright (c) 1991-1997 Sam Leffler
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
@ -23,7 +23,7 @@
.\" OF THIS SOFTWARE.
.\"
.if n .po 0
.TH TIFFReadRGBAImage 3TIFF "October 29, 2004" "libtiff"
.TH TIFFReadRGBAImage 3TIFF "October 13, 2006" "libtiff"
.SH NAME
TIFFReadRGBAImage, TIFFReadRGBAImageOriented \- read and decode an image
into a fixed-format raster
@ -38,9 +38,9 @@ into a fixed-format raster
.br
.B "#define TIFFGetA(abgr) (((abgr) >> 24) & 0xff)"
.sp
.BI "int TIFFReadRGBAImage(TIFF *" tif ", u_long " width ", u_long " height ", u_long *" raster ", int " stopOnError ")"
.BI "int TIFFReadRGBAImage(TIFF *" tif ", uint32 " width ", uint32 " height ", uint32 *" raster ", int " stopOnError ")"
.br
.BI "int TIFFReadRGBAImageOriented(TIFF *" tif ", u_long " width ", u_long " height ", u_long *" raster ", int " orientation ", int " stopOnError ")"
.BI "int TIFFReadRGBAImageOriented(TIFF *" tif ", uint32 " width ", uint32 " height ", uint32 *" raster ", int " orientation ", int " stopOnError ")"
.br
.SH DESCRIPTION
.IR TIFFReadRGBAImage