Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions test-app/runtime/src/main/cpp/include/zip.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/*
zip.h -- exported declarations.
Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner
Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner

This file is part of libzip, a library to manipulate ZIP archives.
The authors can be contacted at <[email protected]>
Expand Down Expand Up @@ -34,6 +34,15 @@
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#if defined(__has_feature)
#if !__has_feature(nullability)
#define _Nullable
#define _Nonnull
#endif
#else
#define _Nullable
#define _Nonnull
#endif

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -154,6 +163,7 @@ extern "C" {
#define ZIP_ER_CANCELLED 32 /* N Operation cancelled */
#define ZIP_ER_DATA_LENGTH 33 /* N Unexpected length of data */
#define ZIP_ER_NOT_ALLOWED 34 /* N Not allowed in torrentzip */
#define ZIP_ER_TRUNCATED_ZIP 35 /* N Possibly truncated or corrupted zip archive */

/* type of system error value */

Expand Down Expand Up @@ -256,7 +266,8 @@ enum zip_source_cmd {
ZIP_SOURCE_BEGIN_WRITE_CLONING, /* like ZIP_SOURCE_BEGIN_WRITE, but keep part of original file */
ZIP_SOURCE_ACCEPT_EMPTY, /* whether empty files are valid archives */
ZIP_SOURCE_GET_FILE_ATTRIBUTES, /* get additional file attributes */
ZIP_SOURCE_SUPPORTS_REOPEN /* allow reading from changed entry */
ZIP_SOURCE_SUPPORTS_REOPEN, /* allow reading from changed entry */
ZIP_SOURCE_GET_DOS_TIME /* get last modification time in DOS format */
};
typedef enum zip_source_cmd zip_source_cmd_t;

Expand Down
8 changes: 3 additions & 5 deletions test-app/runtime/src/main/cpp/include/zipconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@
based on ../cmake-zipconf.h.in.
*/

#define LIBZIP_VERSION "1.10.1"
#define LIBZIP_VERSION "1.11.4"
#define LIBZIP_VERSION_MAJOR 1
#define LIBZIP_VERSION_MINOR 10
#define LIBZIP_VERSION_MICRO 1
#define LIBZIP_VERSION_MINOR 11
#define LIBZIP_VERSION_MICRO 4

#define ZIP_STATIC



#if !defined(__STDC_FORMAT_MACROS)
#define __STDC_FORMAT_MACROS 1
#endif
Expand Down
Binary file modified test-app/runtime/src/main/libs/arm64-v8a/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/armeabi-v7a/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/x86/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/x86_64/libzip.a
Binary file not shown.
Loading