blob: ad8557f1a32cf69855c376f8219f486d06a56d8c [file] [log] [blame]
Thomas Klausner695cfa52015-03-11 18:17:53 +01001.\" zip_source_win32w.mdoc -- create data source using a win32 Unicode name
Thomas Klausnerdf77dc62016-12-31 13:40:32 +01002.\" Copyright (C) 2015-2016 Dieter Baron and Thomas Klausner
Thomas Klausner695cfa52015-03-11 18:17:53 +01003.\"
4.\" This file is part of libzip, a library to manipulate ZIP archives.
5.\" The authors can be contacted at <libzip@nih.at>
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\" notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\" notice, this list of conditions and the following disclaimer in
14.\" the documentation and/or other materials provided with the
15.\" distribution.
16.\" 3. The names of the authors may not be used to endorse or promote
17.\" products derived from this software without specific prior
18.\" written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
21.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
24.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
26.\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
28.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
30.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31.\"
Thomas Klausner9874efb2016-12-30 01:32:09 +010032.Dd December 29, 2016
Thomas Klausner695cfa52015-03-11 18:17:53 +010033.Dt ZIP_SOURCE_WIN32W 3
34.Os
35.Sh NAME
36.Nm zip_source_win32w ,
37.Nm zip_source_win32w_create
38.Nd create data source from a Windows Unicode file name
39.Sh LIBRARY
40libzip (-lzip)
41.Sh SYNOPSIS
Thomas Klausner9874efb2016-12-30 01:32:09 +010042.In zip.h
Thomas Klausner695cfa52015-03-11 18:17:53 +010043.Ft zip_source_t *
Thomas Klausner9874efb2016-12-30 01:32:09 +010044.Fn zip_source_win32w "zip_t *archive" "const char *fname" "zip_uint64_t start" "zip_int64_t len"
Thomas Klausner695cfa52015-03-11 18:17:53 +010045.Ft zip_source_t *
Thomas Klausner9874efb2016-12-30 01:32:09 +010046.Fn zip_source_win32w_create "const char *fname" "zip_uint64_t start" "zip_int64_t len" "zip_error_t *error"
Thomas Klausner695cfa52015-03-11 18:17:53 +010047.Sh DESCRIPTION
48The functions
49.Fn zip_source_win32w
50and
51.Fn zip_source_win32w_create
52create a zip source on Windows using a Windows Unicode name.
53They open
54.Ar fname
55and read
56.Ar len
57bytes from offset
58.Ar start
59from it.
60If
61.Ar len
62is 0 or \-1, the whole file (starting from
63.Ar start )
64is used.
65.Pp
66If the file supports seek, the source can be used to open a zip archive from.
67.Pp
68The file is opened and read when the data from the source is used, usually by
69.Fn zip_close
70or
71.Fn zip_open_from_source .
72.Sh RETURN VALUES
73Upon successful completion, the created source is returned.
74Otherwise,
75.Dv NULL
76is returned and the error code in
77.Ar archive
78or
79.Ar error
80is set to indicate the error.
81.Sh ERRORS
82.Fn zip_source_win32w
83and
84.Fn zip_source_win32w_create
85fail if:
86.Bl -tag -width Er
87.It Bq Er ZIP_ER_INVAL
88.Ar fname ,
89.Ar start ,
90or
91.Ar len
92are invalid.
93.It Bq Er ZIP_ER_MEMORY
94Required memory could not be allocated.
95.It Bq Er ZIP_ER_OPEN
96Opening
97.Ar fname
98failed.
99.El
100.Sh SEE ALSO
101.Xr libzip 3 ,
102.Xr zip_add 3 ,
103.Xr zip_replace 3 ,
104.Xr zip_source 3 ,
105.Xr zip_source_win32a 3 ,
106.Xr zip_source_win32handle 3
107.Sh AUTHORS
108.An -nosplit
109.An Dieter Baron Aq Mt dillo@nih.at
110and
111.An Thomas Klausner Aq Mt tk@giga.or.at