]> wimlib.net Git - wimlib/blob - src/xml.h
Misc. Win32 fixes, comment updates
[wimlib] / src / xml.h
1 #ifndef _WIMLIB_XML_H
2 #define _WIMLIB_XML_H
3
4 #include "util.h"
5
6 /* A struct wim_info structure corresponds to the entire XML data for a WIM file. */
7 struct wim_info {
8         u64 total_bytes;
9         int num_images;
10         /* Array of `struct image_info's, one for each image in the WIM that is
11          * mentioned in the XML data. */
12         struct image_info *images;
13 };
14
15 /* xml.c */
16 extern int xml_export_image(const struct wim_info *old_wim_info, int image,
17                             struct wim_info **new_wim_info_p,
18                             const char *dest_image_name,
19                             const char *dest_image_description);
20
21 extern size_t xml_get_max_image_name_len(const WIMStruct *w);
22
23 extern void xml_update_image_info(WIMStruct *w, int image);
24
25 extern void xml_delete_image(struct wim_info **wim_info_p, int image);
26
27 extern int xml_add_image(WIMStruct *w, const char *name);
28
29 extern void free_wim_info(struct wim_info *info);
30
31 extern void print_image_info(const struct wim_info *wim_info, int image);
32
33 extern int read_xml_data(FILE *fp, const struct resource_entry *res,
34                          u8 **xml_data_ret, struct wim_info **info_ret);
35
36 extern int write_xml_data(const struct wim_info *wim_info, int image, FILE *out,
37                           u64 total_bytes, struct resource_entry *out_res_entry);
38
39 extern void libxml_global_init();
40 extern void libxml_global_cleanup();
41
42 static inline u64 wim_info_get_total_bytes(const struct wim_info *info)
43 {
44         return info->total_bytes;
45 }
46
47 static inline unsigned wim_info_get_num_images(const struct wim_info *info)
48 {
49         return info->num_images;
50 }
51
52 #endif