X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fxml.h;h=5eb24c9c6a139869810580cba4af45c30d48c23f;hp=701a93a34fd01187e4d66dbd2200b54203fb2d00;hb=1bf2548cc5ad9e94951c43b8c223cec058d28294;hpb=aa882e9bb92d998707484d7f6f56e9cf109a7c62 diff --git a/src/xml.h b/src/xml.h index 701a93a3..5eb24c9c 100644 --- a/src/xml.h +++ b/src/xml.h @@ -6,14 +6,14 @@ /* A struct wim_info structure corresponds to the entire XML data for a WIM file. */ struct wim_info { u64 total_bytes; - u64 num_images; + int num_images; /* Array of `struct image_info's, one for each image in the WIM that is * mentioned in the XML data. */ struct image_info *images; }; /* xml.c */ -extern int xml_export_image(const struct wim_info *old_wim_info, int image, +extern int xml_export_image(const struct wim_info *old_wim_info, int image, struct wim_info **new_wim_info_p, const char *dest_image_name, const char *dest_image_description); @@ -30,11 +30,11 @@ extern void free_wim_info(struct wim_info *info); extern void print_image_info(const struct wim_info *wim_info, int image); -extern int read_xml_data(FILE *fp, const struct resource_entry *res, +extern int read_xml_data(FILE *fp, const struct resource_entry *res, u8 **xml_data_ret, struct wim_info **info_ret); extern int write_xml_data(const struct wim_info *wim_info, int image, FILE *out, - u64 total_bytes); + u64 total_bytes, struct resource_entry *out_res_entry); static inline u64 wim_info_get_total_bytes(const struct wim_info *info) {