mz_zip.h | mz_zip.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
uint16_t internal_fa; /* internal file attributes */ | uint16_t internal_fa; /* internal file attributes */ | |||
uint32_t external_fa; /* external file attributes */ | uint32_t external_fa; /* external file attributes */ | |||
const char *filename; /* filename utf8 null-terminated st ring */ | const char *filename; /* filename utf8 null-terminated st ring */ | |||
const uint8_t *extrafield; /* extrafield data */ | const uint8_t *extrafield; /* extrafield data */ | |||
const char *comment; /* comment utf8 null-terminated str ing */ | const char *comment; /* comment utf8 null-terminated str ing */ | |||
const char *linkname; /* sym-link filename utf8 null-term inated string */ | const char *linkname; /* sym-link filename utf8 null-term inated string */ | |||
uint16_t zip64; /* zip64 extension mode */ | uint16_t zip64; /* zip64 extension mode */ | |||
uint16_t aes_version; /* winzip aes extension if not 0 */ | uint16_t aes_version; /* winzip aes extension if not 0 */ | |||
uint8_t aes_encryption_mode; /* winzip aes encryption mode */ | uint8_t aes_strength; /* winzip aes encryption strength * / | |||
uint16_t pk_verify; /* pkware encryption verifier */ | uint16_t pk_verify; /* pkware encryption verifier */ | |||
} mz_zip_file, mz_zip_entry; | } mz_zip_file, mz_zip_entry; | |||
/************************************************************************** */ | /************************************************************************** */ | |||
typedef int32_t (*mz_zip_locate_entry_cb)(void *handle, void *userdata, mz_ zip_file *file_info); | typedef int32_t (*mz_zip_locate_entry_cb)(void *handle, void *userdata, mz_ zip_file *file_info); | |||
/************************************************************************** */ | /************************************************************************** */ | |||
void * mz_zip_create(void **handle); | void * mz_zip_create(void); | |||
/* Create zip instance for opening */ | /* Create zip instance for opening */ | |||
void mz_zip_delete(void **handle); | void mz_zip_delete(void **handle); | |||
/* Delete zip object */ | /* Delete zip object */ | |||
int32_t mz_zip_open(void *handle, void *stream, int32_t mode); | int32_t mz_zip_open(void *handle, void *stream, int32_t mode); | |||
/* Create a zip file, no delete file in zip functionality */ | /* Create a zip file, no delete file in zip functionality */ | |||
int32_t mz_zip_close(void *handle); | int32_t mz_zip_close(void *handle); | |||
/* Close the zip file */ | /* Close the zip file */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |