mz_strm.h | mz_strm.h | |||
---|---|---|---|---|
skipping to change at line 42 | skipping to change at line 42 | |||
/************************************************************************** */ | /************************************************************************** */ | |||
typedef int32_t (*mz_stream_open_cb) (void *stream, const char *p ath, int32_t mode); | typedef int32_t (*mz_stream_open_cb) (void *stream, const char *p ath, int32_t mode); | |||
typedef int32_t (*mz_stream_is_open_cb) (void *stream); | typedef int32_t (*mz_stream_is_open_cb) (void *stream); | |||
typedef int32_t (*mz_stream_read_cb) (void *stream, void *buf, in t32_t size); | typedef int32_t (*mz_stream_read_cb) (void *stream, void *buf, in t32_t size); | |||
typedef int32_t (*mz_stream_write_cb) (void *stream, const void *b uf, int32_t size); | typedef int32_t (*mz_stream_write_cb) (void *stream, const void *b uf, int32_t size); | |||
typedef int64_t (*mz_stream_tell_cb) (void *stream); | typedef int64_t (*mz_stream_tell_cb) (void *stream); | |||
typedef int32_t (*mz_stream_seek_cb) (void *stream, int64_t offse t, int32_t origin); | typedef int32_t (*mz_stream_seek_cb) (void *stream, int64_t offse t, int32_t origin); | |||
typedef int32_t (*mz_stream_close_cb) (void *stream); | typedef int32_t (*mz_stream_close_cb) (void *stream); | |||
typedef int32_t (*mz_stream_error_cb) (void *stream); | typedef int32_t (*mz_stream_error_cb) (void *stream); | |||
typedef void* (*mz_stream_create_cb) (void **stream); | typedef void* (*mz_stream_create_cb) (void); | |||
typedef void (*mz_stream_destroy_cb) (void **stream); | typedef void (*mz_stream_destroy_cb) (void **stream); | |||
typedef int32_t (*mz_stream_get_prop_int64_cb) (void *stream, int32_t prop, int64_t *value); | typedef int32_t (*mz_stream_get_prop_int64_cb) (void *stream, int32_t prop, int64_t *value); | |||
typedef int32_t (*mz_stream_set_prop_int64_cb) (void *stream, int32_t prop, int64_t value); | typedef int32_t (*mz_stream_set_prop_int64_cb) (void *stream, int32_t prop, int64_t value); | |||
typedef int32_t (*mz_stream_find_cb) (void *stream, const void *f ind, int32_t find_size, | typedef int32_t (*mz_stream_find_cb) (void *stream, const void *f ind, int32_t find_size, | |||
int64_t max_seek, int64_t * position); | int64_t max_seek, int64_t * position); | |||
/************************************************************************** */ | /************************************************************************** */ | |||
skipping to change at line 106 | skipping to change at line 106 | |||
int32_t mz_stream_find(void *stream, const void *find, int32_t find_size, i nt64_t max_seek, int64_t *position); | int32_t mz_stream_find(void *stream, const void *find, int32_t find_size, i nt64_t max_seek, int64_t *position); | |||
int32_t mz_stream_find_reverse(void *stream, const void *find, int32_t find _size, int64_t max_seek, int64_t *position); | int32_t mz_stream_find_reverse(void *stream, const void *find, int32_t find _size, int64_t max_seek, int64_t *position); | |||
int32_t mz_stream_close(void *stream); | int32_t mz_stream_close(void *stream); | |||
int32_t mz_stream_error(void *stream); | int32_t mz_stream_error(void *stream); | |||
int32_t mz_stream_set_base(void *stream, void *base); | int32_t mz_stream_set_base(void *stream, void *base); | |||
void* mz_stream_get_interface(void *stream); | void* mz_stream_get_interface(void *stream); | |||
int32_t mz_stream_get_prop_int64(void *stream, int32_t prop, int64_t *value ); | int32_t mz_stream_get_prop_int64(void *stream, int32_t prop, int64_t *value ); | |||
int32_t mz_stream_set_prop_int64(void *stream, int32_t prop, int64_t value) ; | int32_t mz_stream_set_prop_int64(void *stream, int32_t prop, int64_t value) ; | |||
void* mz_stream_create(void **stream, mz_stream_vtbl *vtbl); | void* mz_stream_create(mz_stream_vtbl *vtbl); | |||
void mz_stream_delete(void **stream); | void mz_stream_delete(void **stream); | |||
/************************************************************************** */ | /************************************************************************** */ | |||
int32_t mz_stream_raw_open(void *stream, const char *filename, int32_t mode ); | int32_t mz_stream_raw_open(void *stream, const char *filename, int32_t mode ); | |||
int32_t mz_stream_raw_is_open(void *stream); | int32_t mz_stream_raw_is_open(void *stream); | |||
int32_t mz_stream_raw_read(void *stream, void *buf, int32_t size); | int32_t mz_stream_raw_read(void *stream, void *buf, int32_t size); | |||
int32_t mz_stream_raw_write(void *stream, const void *buf, int32_t size); | int32_t mz_stream_raw_write(void *stream, const void *buf, int32_t size); | |||
int64_t mz_stream_raw_tell(void *stream); | int64_t mz_stream_raw_tell(void *stream); | |||
int32_t mz_stream_raw_seek(void *stream, int64_t offset, int32_t origin); | int32_t mz_stream_raw_seek(void *stream, int64_t offset, int32_t origin); | |||
int32_t mz_stream_raw_close(void *stream); | int32_t mz_stream_raw_close(void *stream); | |||
int32_t mz_stream_raw_error(void *stream); | int32_t mz_stream_raw_error(void *stream); | |||
int32_t mz_stream_raw_get_prop_int64(void *stream, int32_t prop, int64_t *v alue); | int32_t mz_stream_raw_get_prop_int64(void *stream, int32_t prop, int64_t *v alue); | |||
int32_t mz_stream_raw_set_prop_int64(void *stream, int32_t prop, int64_t va lue); | int32_t mz_stream_raw_set_prop_int64(void *stream, int32_t prop, int64_t va lue); | |||
void* mz_stream_raw_create(void **stream); | void* mz_stream_raw_create(void); | |||
void mz_stream_raw_delete(void **stream); | void mz_stream_raw_delete(void **stream); | |||
/************************************************************************** */ | /************************************************************************** */ | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif | #endif | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 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/ |