X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fwim.h;h=83b1dbcb359e3587ccfc1ef0cbfde3133a5fff1e;hp=4afa60eb8594943ecc8ad06e4d8912384e51627b;hb=f24f8409b041727329e980fdc81e84a7c9b00e5b;hpb=69bf8e6b27c11c8dfb0e9794ea43c3b8af72ee38 diff --git a/include/wimlib/wim.h b/include/wimlib/wim.h index 4afa60eb..83b1dbcb 100644 --- a/include/wimlib/wim.h +++ b/include/wimlib/wim.h @@ -94,7 +94,7 @@ static inline bool wim_is_pipable(const WIMStruct *wim) static inline bool wim_has_integrity_table(const WIMStruct *wim) { - return (wim->hdr.integrity.offset != 0); + return (wim->hdr.integrity_table_reshdr.offset_in_wim != 0); } static inline bool wim_has_metadata(const WIMStruct *wim) @@ -112,8 +112,7 @@ extern int init_wim_header(struct wim_header *hdr, int ctype, u32 chunk_size); extern int -read_wim_header(const tchar *filename, struct filedes *in_fd, - struct wim_header *hdr); +read_wim_header(WIMStruct *wim, struct wim_header *hdr); extern int write_wim_header(const struct wim_header *hdr, struct filedes *out_fd);