~ubuntu-branches/ubuntu/vivid/libzip/vivid

« back to all changes in this revision

Viewing changes to man/zip_source_function.mdoc

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2014-02-09 13:24:18 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140209132418-t7u2auujqnfb5rvm
Tags: 0.11.2-1
* New upstream release (Closes: #734388).
* Remove patches:
  - fix_open_nonarchive_test.patch - fixed upstream
  - fix_zipconf_path.patch - fixed upstream
  - fix_broken_decrypt.patch - fixed upstream
  - fix_autotools_tests.diff - stolen upstream
* Update debian/control:
  - add unzip to Build-Depends.
  - bump compat to 9
* Update *.install: multiarch paths.
* Update libzip2 symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
.\" zip_source_function.mdoc -- create data source from function
2
 
.\" Copyright (C) 2004-2009 Dieter Baron and Thomas Klausner
 
2
.\" Copyright (C) 2004-2013 Dieter Baron and Thomas Klausner
3
3
.\"
4
4
.\" This file is part of libzip, a library to manipulate ZIP archives.
5
5
.\" The authors can be contacted at <libzip@nih.at>
29
29
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
30
30
.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
31
.\"
32
 
.Dd March 30, 2009
 
32
.Dd September 22, 2013
33
33
.Dt ZIP_SOURCE_FUNCTION 3
34
34
.Os
35
35
.Sh NAME
84
84
.It Dv ZIP_SOURCE_STAT
85
85
Get meta information for the input data.
86
86
.Ar data
87
 
points to an initialized
 
87
points to an allocated
88
88
.Vt struct zip_stat ,
89
 
which should be filled in.
90
 
(See
91
 
.Xr zip_stat_init 3 . )
 
89
which should be initialized using
 
90
.Xr zip_stat_init 3
 
91
and then filled in.
92
92
Information only available after the source has been read (e.g. size)
93
93
can be omitted in an earlier call.
94
94
Return sizeof(struct zip_stat) on success, \-1 on error.
 
95
.Em NOTE :
 
96
.Fn zip_source_function
 
97
may be called with this argument even after being called with
 
98
.Dv ZIP_SOURCE_CLOSE .
95
99
.It Dv ZIP_SOURCE_ERROR
96
100
Get error information.
97
101
.Ar data
158
162
.Xr zip_stat_init 3
159
163
.Sh AUTHORS
160
164
.An -nosplit
161
 
.An Dieter Baron Aq dillo@nih.at
 
165
.An Dieter Baron Aq Mt dillo@nih.at
162
166
and
163
 
.An Thomas Klausner Aq tk@giga.or.at
 
167
.An Thomas Klausner Aq Mt tk@giga.or.at