]> git.saurik.com Git - wxWidgets.git/blob - src/tiff/man/TIFFFlush.3tiff
fix vertical mouse wheel event rotation value, sign was reversed in r74805
[wxWidgets.git] / src / tiff / man / TIFFFlush.3tiff
1 .\"
2 .\" Copyright (c) 1988-1997 Sam Leffler
3 .\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
4 .\"
5 .\" Permission to use, copy, modify, distribute, and sell this software and
6 .\" its documentation for any purpose is hereby granted without fee, provided
7 .\" that (i) the above copyright notices and this permission notice appear in
8 .\" all copies of the software and related documentation, and (ii) the names of
9 .\" Sam Leffler and Silicon Graphics may not be used in any advertising or
10 .\" publicity relating to the software without the specific, prior written
11 .\" permission of Sam Leffler and Silicon Graphics.
12 .\"
13 .\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
14 .\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
15 .\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
16 .\"
17 .\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
18 .\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
19 .\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
20 .\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
21 .\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
22 .\" OF THIS SOFTWARE.
23 .\"
24 .if n .po 0
25 .TH TIFFFlush 3TIFF "December 16, 1991" "libtiff"
26 .SH NAME
27 TIFFFlush, TIFFFlushData \- flush pending writes to an open
28 .SM TIFF
29 file
30 .SH SYNOPSIS
31 .B "#include <tiffio.h>"
32 .sp
33 .BI "int TIFFFlush(TIFF *" tif ")"
34 .br
35 .BI "int TIFFFlushData(TIFF *" tif ")"
36 .SH DESCRIPTION
37 .IR TIFFFlush
38 causes any pending writes for the specified file (including writes for the
39 current directory) to be done. In normal operation this call is never needed \-
40 the library automatically does any flushing required.
41 .PP
42 .IR TIFFFlushData
43 flushes any pending image data for the specified file to be written out;
44 directory-related data are not flushed. In normal operation this call is never
45 needed \- the library automatically does any flushing required.
46 .SH "RETURN VALUES"
47 0 is returned if an error is encountered, otherwise 1 is returned.
48 .SH DIAGNOSTICS
49 All error messages are directed to the
50 .BR TIFFError (3TIFF)
51 routine.
52 .SH "SEE ALSO"
53 .BR TIFFOpen (3TIFF),
54 .BR TIFFWriteEncodedStrip (3TIFF),
55 .BR TIFFWriteEncodedTile (3TIFF),
56 .BR TIFFWriteRawStrip (3TIFF),
57 .BR TIFFWriteRawTile (3TIFF),
58 .BR TIFFWriteScanline (3TIFF),
59 .BR TIFFWriteTile (3TIFF)
60 .BR libtiff (3TIFF),
61 .PP
62 Libtiff library home page:
63 .BR http://www.remotesensing.org/libtiff/