comparison libzip/lib/zipwin32.h @ 20:3b18afe43c9d

libzip: reimport version 1.1.3
author David Demelier <markand@malikania.fr>
date Wed, 29 Jun 2016 09:24:55 +0200
parents 2306f4b04790
children
comparison
equal deleted inserted replaced
19:07f2cdc6e430 20:3b18afe43c9d
1 #ifndef _HAD_ZIPWIN32_H
2 #define _HAD_ZIPWIN32_H
3
4 /*
5 zipwin32.h -- internal declarations for Windows.
6 Copyright (C) 1999-2015 Dieter Baron and Thomas Klausner
7
8 This file is part of libzip, a library to manipulate ZIP archives.
9 The authors can be contacted at <libzip@nih.at>
10
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions
13 are met:
14 1. Redistributions of source code must retain the above copyright
15 notice, this list of conditions and the following disclaimer.
16 2. Redistributions in binary form must reproduce the above copyright
17 notice, this list of conditions and the following disclaimer in
18 the documentation and/or other materials provided with the
19 distribution.
20 3. The names of the authors may not be used to endorse or promote
21 products derived from this software without specific prior
22 written permission.
23
24 THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
25 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
30 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
33 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
34 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 /* 0x0501 => Windows XP; needs to be at least this value because of GetFileSizeEx */
38 #define _WIN32_WINNT 0x0501
39 #include <windows.h>
40
41 /* context for Win32 source */
42
43 struct _zip_source_win32_file_ops;
44
45 struct _zip_source_win32_read_file {
46 zip_error_t error; /* last error information */
47 zip_int64_t supports;
48
49 /* operations */
50 struct _zip_source_win32_file_ops *ops;
51
52 /* reading */
53 void *fname; /* name of file to read from - ANSI (char *) or Unicode (wchar_t *) */
54 void *h; /* HANDLE for file to read from */
55 int closep; /* whether to close f on ZIP_CMD_FREE */
56 struct zip_stat st; /* stat information passed in */
57 zip_uint64_t start; /* start offset of data to read */
58 zip_uint64_t end; /* end offset of data to read, 0 for up to EOF */
59 zip_uint64_t current; /* current offset */
60
61 /* writing */
62 void *tmpname; /* name of temp file - ANSI (char *) or Unicode (wchar_t *) */
63 void *hout; /* HANDLE for output file */
64 };
65
66 typedef struct _zip_source_win32_read_file _zip_source_win32_read_file_t;
67
68 /* internal operations for Win32 source */
69
70 struct _zip_source_win32_file_ops {
71 void *(*op_strdup)(const void *);
72 void *(*op_open)(_zip_source_win32_read_file_t *);
73 void *(*op_create_temp)(_zip_source_win32_read_file_t *, void **, zip_uint32_t, PSECURITY_ATTRIBUTES);
74 int (*op_rename_temp)(_zip_source_win32_read_file_t *);
75 int (*op_remove)(const void *);
76 };
77
78 typedef struct _zip_source_win32_file_ops _zip_source_win32_file_ops_t;
79
80 zip_source_t *_zip_source_win32_handle_or_name(const void *, void *, zip_uint64_t, zip_int64_t, int, const zip_stat_t *, _zip_source_win32_file_ops_t *, zip_error_t *);
81
82 #endif /* zipwin32.h */