]> wimlib.net Git - wimlib/blob - src/wimlib.h
mount_image.c: Use fuse_context.umask only when available
[wimlib] / src / wimlib.h
1 /*
2  * wimlib.h
3  *
4  * External header for wimlib.
5  *
6  * This file contains extensive comments for generating documentation with
7  * Doxygen.  The built HTML documentation can be viewed at
8  * http://wimlib.sourceforge.net.
9  */
10
11 /*
12  * Copyright (C) 2012, 2013 Eric Biggers
13  *
14  * This file is part of wimlib, a library for working with WIM files.
15  *
16  * wimlib is free software; you can redistribute it and/or modify it under the
17  * terms of the GNU General Public License as published by the Free
18  * Software Foundation; either version 3 of the License, or (at your option)
19  * any later version.
20  *
21  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
22  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
23  * A PARTICULAR PURPOSE. See the GNU General Public License for more
24  * details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with wimlib; if not, see http://www.gnu.org/licenses/.
28  */
29
30 /** \mainpage
31  *
32  * \section intro Introduction
33  *
34  * This is the documentation for the library interface of wimlib 1.3.3.  If you
35  * have installed wimlib and want to know how to use the @b wimlib-imagex
36  * program, please see the man pages instead.  Also: the actual project page
37  * where you can download the source code for the library is at <a
38  * href="https://sourceforge.net/projects/wimlib">https://sourceforge.net/projects/wimlib</a>.
39  *
40  * wimlib is a C library to read, write, and mount archive files in the Windows
41  * Imaging Format (WIM files).  These files are normally created using the
42  * ImageX (@a imagex.exe) utility on Windows, but this library provides a free
43  * implementation of ImageX for UNIX-based systems (and, since v1.3.0, for
44  * Windows systems) and an API to allow other programs to read, write, and mount
45  * WIM files.  wimlib is comparable to Microsoft's WIMGAPI, but was designed
46  * independently and is not a clone of it.
47  *
48  * \section format WIM files
49  *
50  * A <b>Windows Imaging (WIM)</b> file is an archive.  Like some other archive
51  * formats such as ZIP, files in WIM archives may be compressed.  WIM archives
52  * support two Microsoft-specific compression formats:  @b LZX and @b XPRESS.
53  * Both are based on LZ77 and Huffman encoding, and both are supported by
54  * wimlib.
55  *
56  * Unlike ZIP files, WIM files can contain multiple independent toplevel
57  * directory trees known as @a images.  While each image has its own metadata,
58  * files are not duplicated for each image; instead, each file is included only
59  * once in the entire WIM. Microsoft did this so that in one WIM file, they
60  * could do things like have 5 different versions of Windows that are almost
61  * exactly the same.
62  *
63  * Microsoft provides documentation for the WIM file format, XPRESS compression
64  * format, and LZX compression format.  The XPRESS documentation is acceptable,
65  * but the LZX documentation is not entirely correct, and the WIM documentation
66  * itself is incomplete.
67  *
68  * A WIM file may be either stand-alone or split into multiple parts.
69  *
70  * \section ntfs NTFS support
71  *
72  * As of version 1.0.0, wimlib supports capturing and applying images directly
73  * to NTFS volumes.  This was made possible with the help of libntfs-3g from the
74  * NTFS-3g project.  This feature supports capturing and restoring NTFS-specific
75  * data such as security descriptors, alternate data streams, and reparse point
76  * data.
77
78  * The code for NTFS image capture and image application is complete enough that
79  * it is possible to apply an image from the "install.wim" contained in recent
80  * Windows installation media (Vista, Windows 7, or Windows 8) directly to a
81  * NTFS volume, and then boot Windows from it after preparing the Boot
82  * Configuration Data.  In addition, a Windows installation can be captured (or
83  * backed up) into a WIM file, and then re-applied later.
84  *
85  * wimlib v1.3.0 and later also supports NTFS capture and apply in the native
86  * Windows build, which works slightly differently and relies on native Win32
87  * API calls rather than libntfs-3g.
88  *
89  * \section winpe Windows PE
90  *
91  * A major use for this library is to create customized images of Windows PE, the
92  * Windows Preinstallation Environment, without having to rely on Windows.  Windows
93  * PE is a lightweight version of Windows that can run entirely from memory and can
94  * be used to install Windows from local media or a network drive or perform
95  * maintenance.  Windows PE is the operating system that runs when you boot from
96  * the Windows installation media.
97  *
98  * You can find Windows PE on the installation DVD for Windows Vista, Windows 7,
99  * or Windows 8, in the file @c sources/boot.wim.  Windows PE can also be found
100  * in the Windows Automated Installation Kit (WAIK), which is free to download
101  * from Microsoft, inside the @c WinPE.cab file, which you can extract if you
102  * install either the @c cabextract or @c p7zip programs.
103  *
104  * In addition, Windows installations and recovery partitions frequently contain a
105  * WIM containing an image of the Windows Recovery Environment, which is similar to
106  * Windows PE.
107  *
108  * \section starting Getting Started
109  *
110  * wimlib uses the GNU autotools, so it should be easy to install with
111  * <code>configure && make && sudo make install</code>; however, please see the
112  * README for more information about installing it.  To use wimlib in a program
113  * after installing it, include @c wimlib.h and link your program with @c -lwim.
114  *
115  * wimlib wraps up a WIM file in an opaque ::WIMStruct structure.  A ::WIMStruct
116  * may represent either a stand-alone WIM or one part of a split WIM.
117  *
118  * All functions in wimlib's public API are prefixed with @c wimlib.  Most
119  * return an integer error code on failure.  Use wimlib_get_error_string() to
120  * get a string that describes an error code.  wimlib also can print error
121  * messages itself when an error happens, and these may be more informative than
122  * the error code; to enable this, call wimlib_set_print_errors().  Please note
123  * that this is for convenience only, and some errors can occur without a
124  * message being printed.
125  *
126  * wimlib is thread-safe as long as different ::WIMStruct's are used, except for
127  * the following exceptions:
128  * - wimlib_set_print_errors() and wimlib_set_memory_allocator() both apply globally.
129  * - You also must call wimlib_global_init() in the main thread to avoid any
130  *   race conditions with one-time allocations of memory.
131  * - wimlib_mount_image(), while it can be used to mount multiple WIMs
132  *   concurrently in the same process, will daemonize the entire process when it
133  *   does so for the first time.  This includes changing the working directory
134  *   to the root directory.
135  *
136  * To open an existing WIM, use wimlib_open_wim().
137  *
138  * To create a new WIM that initially contains no images, use
139  * wimlib_create_new_wim().
140  *
141  * To add an image to a WIM file from a directory tree on your filesystem, call
142  * wimlib_add_image().  This can be done with a ::WIMStruct gotten from
143  * wimlib_open_wim() or from wimlib_create_new_wim().  wimlib_add_image() can
144  * also capture a WIM image directly from a NTFS volume if you provide the
145  * ::WIMLIB_ADD_IMAGE_FLAG_NTFS flag, provided that wimlib was not compiled with
146  * the <code>--without-ntfs-3g</code> flag.
147  *
148  * To extract an image from a WIM file, call wimlib_extract_image().  You may
149  * extract an image either to a directory or directly to a NTFS volume, the
150  * latter of which will preserve NTFS-specific data such as security
151  * descriptors.
152  *
153  * wimlib supports mounting WIM files either read-only or read-write.  Mounting
154  * is done using wimlib_mount_image() and unmounting is done using
155  * wimlib_unmount_image().  Mounting can be done without root privileges because
156  * it is implemented using FUSE (Filesystem in Userspace).  If wimlib is
157  * compiled with the <code>--without-fuse</code> flag, these functions will be
158  * available but will fail with ::WIMLIB_ERR_UNSUPPORTED.
159  *
160  * After creating or modifying a WIM file, you can write it to a file using
161  * wimlib_write().  Alternatively,  if the WIM was originally read from a file
162  * (using wimlib_open_wim() rather than wimlib_create_new_wim()), you can use
163  * wimlib_overwrite() to overwrite the original file.
164  *
165  * Please note: merely by calling wimlib_add_image() or many of the other
166  * functions in this library that operate on ::WIMStruct's, you are @b not
167  * modifying the WIM file on disk.  Changes are not saved until you explicitly
168  * call wimlib_write() or wimlib_overwrite().
169  *
170  * After you are done with the WIM file, use wimlib_free() to free all memory
171  * associated with a ::WIMStruct and close all files associated with it.
172  *
173  * A number of functions take a pointer to a progress function of type
174  * ::wimlib_progress_func_t.  This function will be called periodically during
175  * the WIM operation(s) to report on the progress of the operation (for example,
176  * how many bytes have been written so far).
177  *
178  * \section imagex wimlib-imagex
179  *
180  * wimlib comes with a command-line interface, the @b wimlib-imagex program.  It
181  * is documented with man pages.  This program was originally just called @b
182  * imagex, but has been changed to @b wimlib-imagex to avoid confusion with
183  * Microsoft's @a imagex.exe (which would otherwise have exactly the same
184  * filename on Windows).
185  *
186  * \section mkwinpeimg mkwinpeimg
187  *
188  * wimlib also comes with the <b>mkwinpeimg</b> script, which is documented in a
189  * man page.
190  *
191  * \section encodings Locales and character encodings
192  *
193  * To support Windows as well as UNIX, wimlib's API typically takes and returns
194  * strings of ::wimlib_tchar, which are in a platform-dependent encoding.
195  *
196  * On Windows, each ::wimlib_tchar is 2 bytes and is the same as a "wchar_t",
197  * and the encoding is UTF-16LE.
198  *
199  * On UNIX, each ::wimlib_tchar is 1 byte and is simply a "char", and the
200 * encoding is the locale-dependent multibyte encoding.  I recommend you set your
201 * locale to a UTF-8 capable locale to avoid any issues.  Also, by default,
202         * wimlib on UNIX will assume the locale is UTF-8 capable unless you call
203 * wimlib_global_init() after having set your desired locale.
204  *
205  * \section Limitations
206  *
207  * While wimlib supports the main features of WIM files, wimlib currently has
208  * the following limitations:
209  * - There is no way to add, remove, modify, or extract specific files in a WIM
210  *   without mounting it, other than by adding, removing, or extracting an
211  *   entire image.  The FUSE mount feature should be used for this purpose.
212  * - Currently, Microsoft's @a image.exe can create slightly smaller WIM files
213  *   than wimlib (~2% or 3% smaller) when using maximum (LZX) compression.
214  * - wimlib is experimental and likely contains bugs; use Microsoft's @a
215  *   imagex.exe if you want to make sure your WIM files are made "correctly".
216  * - The old WIM format from Vista pre-releases is not supported.
217  * - Compressed resource chunk sizes other than 32768 are not supported,
218  *   although this doesn't seem to be a problem because the chunk size always
219  *   seems to be this value.
220  * - wimlib does not provide a clone of the @b PEImg tool that allows you to
221  *   make certain Windows-specific modifications to a Windows PE image, such as
222  *   adding a driver or Windows component.  Such a tool could conceivably be
223  *   implemented on top of wimlib, although it likely would be hard to implement
224  *   because it would have to do very Windows-specific things such as
225  *   manipulating the driver store.  wimlib does provide the @b mkwinpeimg
226  *   script for a similar purpose, however.  With regards to adding drivers to
227  *   Windows PE, you have the option of putting them anywhere in the Windows PE
228  *   image, then loading them after boot using @b drvload.exe.
229  * - Although wimlib 1.3.0 and later can be used on Windows as well as UNIX, the
230  *   Windows build has some limitations compared to the UNIX build.
231  *   (The differences are documented better in the man pages for
232  *   @b wimlib-imagex than here.)
233  *
234  * \section legal License
235  *
236  * The wimlib library, as well as the programs and scripts distributed with it
237  * (@b wimlib-imagex and @b mkwinpeimg), is licensed under the GNU General
238  * Public License version 3 or later.
239  */
240
241 #ifndef _WIMLIB_H
242 #define _WIMLIB_H
243
244 #include <stdio.h>
245 #include <stddef.h>
246 #include <stdbool.h>
247 #include <inttypes.h>
248
249 /** Major version of the library (for example, the 1 in 1.2.5). */
250 #define WIMLIB_MAJOR_VERSION 1
251
252 /** Minor version of the library (for example, the 2 in 1.2.5). */
253 #define WIMLIB_MINOR_VERSION 3
254
255 /** Patch version of the library (for example, the 5 in 1.2.5). */
256 #define WIMLIB_PATCH_VERSION 3
257
258 /**
259  * Opaque structure that represents a WIM file.  This is an in-memory structure
260  * and need not correspond to a specific on-disk file.  However, a ::WIMStruct
261  * obtained from wimlib_open_wim() depends on the underlying on-disk WIM file
262  * continuing to exist so that data can be read from it as needed.
263  *
264  * Most functions in this library will work the same way regardless of whether a
265  * given ::WIMStruct was obtained through wimlib_open_wim() or
266  * wimlib_create_new_wim().  Exceptions are documented.
267  *
268  * Use wimlib_write() or wimlib_overwrite() to actually write an on-disk WIM
269  * file from a ::WIMStruct.
270  */
271 typedef struct WIMStruct WIMStruct;
272
273 #ifdef __WIN32__
274 typedef wchar_t wimlib_tchar;
275 #else
276 /** See \ref encodings */
277 typedef char wimlib_tchar;
278 #endif
279
280 /**
281  * Specifies the compression type of a WIM file.
282  */
283 enum wimlib_compression_type {
284         /** An invalid compression type. */
285         WIMLIB_COMPRESSION_TYPE_INVALID = -1,
286
287         /** The WIM does not include any compressed resources. */
288         WIMLIB_COMPRESSION_TYPE_NONE = 0,
289
290         /** Compressed resources in the WIM use LZX compression. */
291         WIMLIB_COMPRESSION_TYPE_LZX = 1,
292
293         /** Compressed resources in the WIM use XPRESS compression. */
294         WIMLIB_COMPRESSION_TYPE_XPRESS = 2,
295 };
296
297 /** Possible values of the first parameter to the user-supplied
298  * ::wimlib_progress_func_t progress function */
299 enum wimlib_progress_msg {
300
301         /** A WIM image is about to be extracted.  @a info will point to
302          * ::wimlib_progress_info.extract. */
303         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
304
305         /** The directory structure of the WIM image is about to be extracted.
306          * @a info will point to ::wimlib_progress_info.extract. */
307         WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
308
309         /** The directory structure of the WIM image has been successfully
310          * extracted.  @a info will point to ::wimlib_progress_info.extract. */
311         WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
312
313         /** The WIM image's files resources are currently being extracted.  @a
314          * info will point to ::wimlib_progress_info.extract. */
315         WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS,
316
317         /** A file or directory is being extracted.  @a info will point to
318          * ::wimlib_progress_info.extract, and the @a cur_path member will be
319          * valid. */
320         WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY,
321
322         /** All the WIM files and directories have been extracted, and
323          * timestamps are about to be applied.  @a info will point to
324          * ::wimlib_progress_info.extract. */
325         WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS,
326
327         /** A WIM image has been successfully extracted.  @a info will point to
328          * ::wimlib_progress_info.extract. */
329         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END,
330
331         /** The directory or NTFS volume is about to be scanned to build a tree
332          * of WIM dentries in-memory.  @a info will point to
333          * ::wimlib_progress_info.scan. */
334         WIMLIB_PROGRESS_MSG_SCAN_BEGIN,
335
336         /** A directory or file is being scanned.  @a info will point to
337          * ::wimlib_progress_info.scan, and its @a cur_path member will be
338          * valid.  This message is only sent if ::WIMLIB_ADD_IMAGE_FLAG_VERBOSE
339          * is passed to wimlib_add_image(). */
340         WIMLIB_PROGRESS_MSG_SCAN_DENTRY,
341
342         /** The directory or NTFS volume has been successfully scanned, and a
343          * tree of WIM dentries has been built in-memory. @a info will point to
344          * ::wimlib_progress_info.scan. */
345         WIMLIB_PROGRESS_MSG_SCAN_END,
346
347         /**
348          * File resources are currently being written to the WIM.
349          * @a info will point to ::wimlib_progress_info.write_streams. */
350         WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
351
352         /**
353          * The metadata resource for each image is about to be written to the
354          * WIM. @a info will not be valid. */
355         WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN,
356
357         /**
358          * The metadata resource for each image has successfully been writen to
359          * the WIM.  @a info will not be valid. */
360         WIMLIB_PROGRESS_MSG_WRITE_METADATA_END,
361
362         /**
363          * The temporary file has successfully been renamed to the original WIM
364          * file.  Only happens when wimlib_overwrite() is called and the
365          * overwrite is not done in-place.
366          * @a info will point to ::wimlib_progress_info.rename. */
367         WIMLIB_PROGRESS_MSG_RENAME,
368
369         /** The contents of the WIM are being checked against the integrity
370          * table.  Only happens when wimlib_open_wim() is called with the
371          * ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY flag.  @a info will point to
372          * ::wimlib_progress_info.integrity. */
373         WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY,
374
375         /** An integrity table is being calculated for the WIM being written.
376          * Only happens when wimlib_write() or wimlib_overwrite() is called with
377          * the ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY flag.  @a info will point to
378          * ::wimlib_progress_info.integrity. */
379         WIMLIB_PROGRESS_MSG_CALC_INTEGRITY,
380
381         /** A wimlib_join() operation is in progress.  @a info will point to
382          * ::wimlib_progress_info.join. */
383         WIMLIB_PROGRESS_MSG_JOIN_STREAMS,
384
385         /** A wimlib_split() operation is in progress, and a new split part is
386          * about to be started.  @a info will point to
387          * ::wimlib_progress_info.split. */
388         WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART,
389
390         /** A wimlib_split() operation is in progress, and a split part has been
391          * finished. @a info will point to ::wimlib_progress_info.split. */
392         WIMLIB_PROGRESS_MSG_SPLIT_END_PART,
393 };
394
395 /** A pointer to this union is passed to the user-supplied
396  * ::wimlib_progress_func_t progress function.  One (or none) of the structures
397  * contained in this union will be applicable for the operation
398  * (::wimlib_progress_msg) indicated in the first argument to the progress
399  * function. */
400 union wimlib_progress_info {
401
402         /* N.B. I wanted these to be anonymous structs, but Doxygen won't
403          * document them if they aren't given a name... */
404
405         /** Valid on messages ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS. */
406         struct wimlib_progress_info_write_streams {
407                 /** Number of bytes that are going to be written for all the
408                  * streams combined.  This is the amount in uncompressed data.
409                  * (The actual number of bytes will be less if the data is being
410                  * written compressed.) */
411                 uint64_t total_bytes;
412                 /** Number of streams that are going to be written. */
413                 uint64_t total_streams;
414
415                 /** Number of uncompressed bytes that have been written so far.
416                  * Will be 0 initially, and equal to @a total_bytes at the end.
417                  * */
418                 uint64_t completed_bytes;
419
420                 /** Number of streams that have been written.  Will be 0
421                  * initially, and equal to @a total_streams at the end. */
422                 uint64_t completed_streams;
423
424                 /** Number of threads that are being used to compress resources
425                  * (if applicable). */
426                 unsigned num_threads;
427
428                 /** The compression type being used to write the streams; either
429                  * ::WIMLIB_COMPRESSION_TYPE_NONE,
430                  * ::WIMLIB_COMPRESSION_TYPE_XPRESS, or
431                  * ::WIMLIB_COMPRESSION_TYPE_LZX. */
432                 int      compression_type;
433
434                 /** Library internal use only. */
435                 uint64_t _private;
436         } write_streams;
437
438         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and
439          * ::WIMLIB_PROGRESS_MSG_SCAN_END. */
440         struct wimlib_progress_info_scan {
441                 /** Directory or NTFS volume that is being scanned. */
442                 const wimlib_tchar *source;
443
444                 /** Path to the file or directory that is about to be scanned,
445                  * relative to the root of the image capture or the NTFS volume.
446                  * */
447                 const wimlib_tchar *cur_path;
448
449                 /** True iff @a cur_path is being excluded from the image
450                  * capture due to the capture configuration file. */
451                 bool excluded;
452
453                 /** Target path in the WIM.  Only valid on messages
454                  * ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and
455                  * ::WIMLIB_PROGRESS_MSG_SCAN_END. */
456                 const wimlib_tchar *wim_target_path;
457         } scan;
458
459         /** Valid on messages ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
460          * ::WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
461          * ::WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
462          * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS, and
463          * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END. */
464         struct wimlib_progress_info_extract {
465                 /** Number of the image being extracted (1-based). */
466                 int image;
467
468                 /** Flags passed to to wimlib_extract_image() */
469                 int extract_flags;
470
471                 /** Full path to the WIM file being extracted. */
472                 const wimlib_tchar *wimfile_name;
473
474                 /** Name of the image being extracted. */
475                 const wimlib_tchar *image_name;
476
477                 /** Directory or NTFS volume to which the image is being
478                  * extracted. */
479                 const wimlib_tchar *target;
480
481                 /** Current dentry being extracted.  (Valid only if message is
482                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY.) */
483                 const wimlib_tchar *cur_path;
484
485                 /** Number of bytes of uncompressed data that will be extracted.
486                  * Takes into account hard links (they are not counted for each
487                  * link.)
488                  * */
489                 uint64_t total_bytes;
490
491                 /** Number of bytes that have been written so far.  Will be 0
492                  * initially, and equal to @a total_bytes at the end. */
493                 uint64_t completed_bytes;
494
495                 /** Number of streams that will be extracted.  This may more or
496                  * less than the number of "files" to be extracted due to
497                  * special cases (hard links, symbolic links, and alternate data
498                  * streams.) */
499                 uint64_t num_streams;
500         } extract;
501
502         /** Valid on messages ::WIMLIB_PROGRESS_MSG_RENAME. */
503         struct wimlib_progress_info_rename {
504                 /** Name of the temporary file that the WIM was written to. */
505                 const wimlib_tchar *from;
506
507                 /** Name of the original WIM file to which the temporary file is
508                  * being renamed. */
509                 const wimlib_tchar *to;
510         } rename;
511
512         /** Valid on messages ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY and
513          * ::WIMLIB_PROGRESS_MSG_CALC_INTEGRITY. */
514         struct wimlib_progress_info_integrity {
515                 /** Number of bytes from the end of the WIM header to the end of
516                  * the lookup table (the area that is covered by the SHA1
517                  * integrity checks.) */
518                 uint64_t total_bytes;
519
520                 /** Number of bytes that have been SHA1-summed so far.  Will be
521                  * 0 initially, and equal @a total_bytes at the end. */
522                 uint64_t completed_bytes;
523
524                 /** Number of chunks that the checksummed region is divided
525                  * into. */
526                 uint32_t total_chunks;
527
528                 /** Number of chunks that have been SHA1-summed so far.   Will
529                  * be 0 initially, and equal to @a total_chunks at the end. */
530                 uint32_t completed_chunks;
531
532                 /** Size of the chunks used for the integrity calculation. */
533                 uint32_t chunk_size;
534
535                 /** Filename of the WIM (only valid if the message is
536                  * ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY). */
537                 const wimlib_tchar *filename;
538         } integrity;
539
540         /** Valid on messages ::WIMLIB_PROGRESS_MSG_JOIN_STREAMS. */
541         struct wimlib_progress_info_join {
542                 /** Total number of bytes of compressed data contained in all
543                  * the split WIM part's file and metadata resources. */
544                 uint64_t total_bytes;
545
546                 /** Number of bytes that have been copied to the joined WIM so
547                  * far.  Will be 0 initially, and equal to @a total_bytes at the
548                  * end. */
549                 uint64_t completed_bytes;
550
551                 /** Number of split WIM parts that have had all their file and
552                  * metadata resources copied over to the joined WIM so far. */
553                 unsigned completed_parts;
554
555                 /** Number of split WIM parts. */
556                 unsigned total_parts;
557         } join;
558
559         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART and
560          * ::WIMLIB_PROGRESS_MSG_SPLIT_END_PART. */
561         struct wimlib_progress_info_split {
562                 /** Total size of the original WIM's file and metadata resources
563                  * (compressed). */
564                 uint64_t total_bytes;
565
566                 /** Number of bytes of file and metadata resources that have
567                  * been copied out of the original WIM so far.  Will be 0
568                  * initially, and equal to @a total_bytes at the end. */
569                 uint64_t completed_bytes;
570
571                 /** Number of the split WIM part that is about to be started
572                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
573                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART). */
574                 unsigned cur_part_number;
575
576                 /** Name of the split WIM part that is about to be started
577                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
578                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART). */
579                 const wimlib_tchar *part_name;
580         } split;
581 };
582
583 /** A user-supplied function that will be called periodically during certain WIM
584  * operations.  The first argument will be the type of operation that is being
585  * performed or is about to be started or has been completed.  The second
586  * argument will be a pointer to one of a number of structures depending on the
587  * first argument.  It may be @c NULL for some message types.
588  *
589  * The return value of the progress function is currently ignored, but it may do
590  * something in the future.  (Set it to 0 for now.)
591  */
592 typedef int (*wimlib_progress_func_t)(enum wimlib_progress_msg msg_type,
593                                       const union wimlib_progress_info *info);
594
595 /** An array of these structures is passed to wimlib_add_image_multisource() to
596  * specify the sources from which to create a WIM image. */
597 struct wimlib_capture_source {
598         /** Absolute or relative path to a file or directory on the external
599          * filesystem to be included in the WIM image. */
600         wimlib_tchar *fs_source_path;
601
602         /** Destination path in the WIM image.  Leading and trailing slashes are
603          * ignored.  The empty string or @c NULL means the root directory of the
604          * WIM image. */
605         wimlib_tchar *wim_target_path;
606
607         /** Reserved; set to 0. */
608         long reserved;
609 };
610
611 /** Structure that specifies a list of path patterns. */
612 struct wimlib_pattern_list {
613         /** Array of patterns.  The patterns may be modified by library code,
614          * but the @a pats pointer itself will not.  See the man page for
615          * <b>wimlib-imagex capture</b> for more information about allowed
616          * patterns. */
617         wimlib_tchar **pats;
618
619         /** Number of patterns in the @a pats array. */
620         size_t num_pats;
621
622         /** Ignored; may be used by the calling code. */
623         size_t num_allocated_pats;
624 };
625
626 /** A structure that contains lists of wildcards that match paths to treat
627  * specially when capturing a WIM image. */
628 struct wimlib_capture_config {
629         /** Paths matching any pattern this list are excluded from being
630          * captured, except if the same path appears in @a
631          * exclusion_exception_pats. */
632         struct wimlib_pattern_list exclusion_pats;
633
634         /** Paths matching any pattern in this list are never excluded from
635          * being captured. */
636         struct wimlib_pattern_list exclusion_exception_pats;
637
638         /** Reserved for future capture configuration options. */
639         struct wimlib_pattern_list reserved1;
640
641         /** Reserved for future capture configuration options. */
642         struct wimlib_pattern_list reserved2;
643
644         /** Library internal use only. */
645         wimlib_tchar *_prefix;
646
647         /** Library internal use only. */
648         size_t _prefix_num_tchars;
649 };
650
651
652 /*****************************
653  * WIMLIB_ADD_IMAGE_FLAG_*   *
654  *****************************/
655
656 /** Directly capture a NTFS volume rather than a generic directory.  This flag
657  * cannot be combined with ::WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE or
658  * ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA.   */
659 #define WIMLIB_ADD_IMAGE_FLAG_NTFS                      0x00000001
660
661 /** Follow symlinks; archive and dump the files they point to.  Cannot be used
662  * with ::WIMLIB_ADD_IMAGE_FLAG_NTFS. */
663 #define WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE               0x00000002
664
665 /** Call the progress function with the message
666  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY when each directory or file is starting to
667  * be scanned. */
668 #define WIMLIB_ADD_IMAGE_FLAG_VERBOSE                   0x00000004
669
670 /** Mark the image being added as the bootable image of the WIM. */
671 #define WIMLIB_ADD_IMAGE_FLAG_BOOT                      0x00000008
672
673 /** Store the UNIX owner, group, and mode.  This is done by adding a special
674  * alternate data stream to each regular file, symbolic link, and directory to
675  * contain this information.  Please note that this flag is for convenience
676  * only; Microsoft's @a imagex.exe will not understand this special information.
677  * This flag cannot be combined with ::WIMLIB_ADD_IMAGE_FLAG_NTFS.  */
678 #define WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA                 0x00000010
679
680 /** Do not capture security descriptors.  Only has an effect in NTFS capture
681  * mode, or in Win32 native builds. */
682 #define WIMLIB_ADD_IMAGE_FLAG_NO_ACLS                   0x00000020
683
684 /** Fail immediately if the full security descriptor of any file or directory
685  * cannot be accessed.  Only has an effect in Win32 native builds.  The default
686  * behavior without this flag is to first try omitting the SACL from the
687  * security descriptor, then to try omitting the security descriptor entirely.
688  * */
689 #define WIMLIB_ADD_IMAGE_FLAG_STRICT_ACLS               0x00000040
690
691 /** Call the progress function with the message
692  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY when a directory or file is excluded from
693  * capture.  This is a subset of the messages provided by
694  * ::WIMLIB_ADD_IMAGE_FLAG_VERBOSE. */
695 #define WIMLIB_ADD_IMAGE_FLAG_EXCLUDE_VERBOSE           0x00000080
696
697 /** Reparse-point fixups:  Modify absolute symbolic links (or junction points,
698  * in the case of Windows) that point inside the directory being captured to
699  * instead be absolute relative to the directory being captured, rather than the
700  * current root; also exclude absolute symbolic links that point outside the
701  * directory tree being captured.
702  *
703  * Without this flag, the default is to do this if WIM_HDR_FLAG_RP_FIX is set in
704  * the WIM header or if this is the first image being added.
705  * WIM_HDR_FLAG_RP_FIX is set if the first image in a WIM is captured with
706  * reparse point fixups enabled and currently cannot be unset. */
707 #define WIMLIB_ADD_IMAGE_FLAG_RPFIX                     0x00000100
708
709 /* Don't do reparse point fixups.  The default behavior is described in the
710  * documentation for ::WIMLIB_ADD_IMAGE_FLAG_RPFIX. */
711 #define WIMLIB_ADD_IMAGE_FLAG_NORPFIX                   0x00000200
712
713 /******************************
714  * WIMLIB_EXPORT_FLAG_* *
715  ******************************/
716
717 /** See documentation for wimlib_export_image(). */
718 #define WIMLIB_EXPORT_FLAG_BOOT                         0x00000001
719
720 /******************************
721  * WIMLIB_EXTRACT_FLAG_*      *
722  ******************************/
723
724 /** Extract the image directly to a NTFS volume rather than a generic directory.
725  * */
726 #define WIMLIB_EXTRACT_FLAG_NTFS                        0x00000001
727
728 /** When identical files are extracted from the WIM, always hard link them
729  * together.  Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
730 #define WIMLIB_EXTRACT_FLAG_HARDLINK                    0x00000002
731
732 /** When identical files are extracted from the WIM, always symlink them
733  * together.  Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
734 #define WIMLIB_EXTRACT_FLAG_SYMLINK                     0x00000004
735
736 /** Call the progress function with the argument
737  * ::WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY each time a file or directory is
738  * extracted.  Note: these calls will be interspersed with calls for the message
739  * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS. */
740 #define WIMLIB_EXTRACT_FLAG_VERBOSE                     0x00000008
741
742 /** Read the WIM file sequentially while extracting the image. */
743 #define WIMLIB_EXTRACT_FLAG_SEQUENTIAL                  0x00000010
744
745 /** Extract special UNIX data captured with ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA.
746  * Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
747 #define WIMLIB_EXTRACT_FLAG_UNIX_DATA                   0x00000020
748
749 /** Do not extract security descriptors.  Only has an effect in NTFS apply mode,
750  * or in Win32 native builds. */
751 #define WIMLIB_EXTRACT_FLAG_NO_ACLS                     0x00000040
752
753 /** Fail immediately if the full security descriptor of any file or directory
754  * cannot be set exactly as specified in the WIM file.  The default behavior
755  * without this flag is to fall back to setting the security descriptor with the
756  * SACL omitted, then only the default inherited security descriptor, if we do
757  * not have permission to set the desired one. */
758 #define WIMLIB_EXTRACT_FLAG_STRICT_ACLS                 0x00000080
759
760 /* Extract equivalent to ::WIMLIB_ADD_IMAGE_FLAG_RPFIX; force reparse-point
761  * fixups on, so absolute symbolic links or junction points will be fixed to be
762  * absolute relative to the actual extraction root.  Done by default if
763  * WIM_HDR_FLAG_RP_FIX is set in the WIM header. */
764 #define WIMLIB_EXTRACT_FLAG_RPFIX                       0x00000100
765
766 /** Force reparse-point fixups on extraction off, regardless of the state of the
767  * WIM_HDR_FLAG_RP_FIX flag in the WIM header. */
768 #define WIMLIB_EXTRACT_FLAG_NORPFIX                     0x00000200
769
770 /******************************
771  * WIMLIB_MOUNT_FLAG_*        *
772  ******************************/
773
774 /** Mount the WIM image read-write rather than the default of read-only. */
775 #define WIMLIB_MOUNT_FLAG_READWRITE                     0x00000001
776
777 /** Enable FUSE debugging by passing the @c -d flag to @c fuse_main().*/
778 #define WIMLIB_MOUNT_FLAG_DEBUG                         0x00000002
779
780 /** Do not allow accessing alternate data streams in the mounted WIM image. */
781 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE         0x00000004
782
783 /** Access alternate data streams in the mounted WIM image through extended file
784  * attributes.  This is the default mode. */
785 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR        0x00000008
786
787 /** Access alternate data streams in the mounted WIM image by specifying the
788  * file name, a colon, then the alternate file stream name. */
789 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS      0x00000010
790
791 /** Use UNIX file owners, groups, and modes if available in the WIM (see
792  * ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA). */
793 #define WIMLIB_MOUNT_FLAG_UNIX_DATA                     0x00000020
794
795 /** Allow other users to see the mounted filesystem.  (this passes the @c
796  * allow_other option to FUSE mount) */
797 #define WIMLIB_MOUNT_FLAG_ALLOW_OTHER                   0x00000040
798
799 /******************************
800  * WIMLIB_OPEN_FLAG_*         *
801  ******************************/
802
803 /** Verify the WIM contents against the WIM's integrity table, if present. */
804 #define WIMLIB_OPEN_FLAG_CHECK_INTEGRITY                0x00000001
805
806 /** Do not issue an error if the WIM is part of a split WIM. */
807 #define WIMLIB_OPEN_FLAG_SPLIT_OK                       0x00000002
808
809 /******************************
810  * WIMLIB_UNMOUNT_FLAG_*      *
811  ******************************/
812
813 /** Include an integrity table in the WIM after it's been unmounted.  Ignored
814  * for read-only mounts. */
815 #define WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY             0x00000001
816
817 /** Unless this flag is given, changes to a read-write mounted WIM are
818  * discarded.  Ignored for read-only mounts. */
819 #define WIMLIB_UNMOUNT_FLAG_COMMIT                      0x00000002
820
821 /** See ::WIMLIB_WRITE_FLAG_REBUILD */
822 #define WIMLIB_UNMOUNT_FLAG_REBUILD                     0x00000004
823
824 /** See ::WIMLIB_WRITE_FLAG_RECOMPRESS */
825 #define WIMLIB_UNMOUNT_FLAG_RECOMPRESS                  0x00000008
826
827 /******************************
828  * WIMLIB_WRITE_FLAG_*        *
829  ******************************/
830
831 /** Include an integrity table in the new WIM file. */
832 #define WIMLIB_WRITE_FLAG_CHECK_INTEGRITY               0x00000001
833
834 /** Re-build the entire WIM file rather than appending data to it, if possible.
835  * (Applies to wimlib_overwrite(), not wimlib_write()). */
836 #define WIMLIB_WRITE_FLAG_REBUILD                       0x00000002
837
838 /** Recompress all resources, even if they could otherwise be copied from a
839  * different WIM with the same compression type (in the case of
840  * wimlib_export_image() being called previously). */
841 #define WIMLIB_WRITE_FLAG_RECOMPRESS                    0x00000004
842
843 /** Call fsync() when the WIM file is closed */
844 #define WIMLIB_WRITE_FLAG_FSYNC                         0x00000008
845
846 /* Specifying this flag overrides the default behavior of wimlib_overwrite()
847  * after one or more calls to wimlib_delete_image(), which is to rebuild the
848  * entire WIM.
849  *
850  * If you specifiy this flag to wimlib_overwrite(), only minimal changes to
851  * correctly remove the image from the WIM will be taken.  In particular, all
852  * streams will be left alone, even if they are no longer referenced.  This is
853  * probably not what you want, because almost no space will be spaced by
854  * deleting an image in this way. */
855 #define WIMLIB_WRITE_FLAG_SOFT_DELETE                   0x00000010
856
857 /** Assume that strings are represented in UTF-8, even if this is not the
858  * locale's character encoding. */
859 #define WIMLIB_INIT_FLAG_ASSUME_UTF8                    0x00000001
860
861
862 #if 0
863 /****************************************************************
864  * Definition of struct wimlib_modify_command, with various flags
865  ****************************************************************/
866
867 enum {
868         WIMLIB_MOVE_TREE_FLAG_OVERWRITE_ALL                     = 0x1,
869         WIMLIB_MOVE_TREE_FLAG_OVERWRITE_NONDIRECTORIES          = 0x2,
870         WIMLIB_MOVE_TREE_FLAG_OVERWRITE_EMPTY_DIRECTORIES       = 0x4,
871         WIMLIB_MOVE_TREE_FLAG_OVERWRITE_DIRECTORIES             = 0x8,
872 };
873
874 enum {
875         WIMLIB_DELETE_TREE_FLAG_FORCE                   = 0x1,
876         WIMLIB_DELETE_TREE_FLAG_RECURSIVE               = 0x2,
877         WIMLIB_DELETE_TREE_FLAG_REMOVE_EMPTY_DIR        = 0x4,
878 };
879
880 enum {
881         WIMLIB_ADD_TREE_FLAG_DEREFERENCE                = 0x1,
882         WIMLIB_ADD_TREE_FLAG_VERBOSE                    = 0x2,
883         WIMLIB_ADD_TREE_FLAG_UNIX_DATA                  = 0x4,
884         WIMLIB_ADD_TREE_FLAG_NOACLS                     = 0x8,
885         WIMLIB_ADD_TREE_FLAG_NTFS_VOLUME                = 0x01,
886         WIMLIB_ADD_TREE_FLAG_OVERLAY                    = 0x02,
887         WIMLIB_ADD_TREE_FLAG_MAKE_NECESSARY_DIRS        = 0x04,
888 };
889
890 enum wimlib_modify_op {
891         WIMLIB_MODIFY_OP_DELETE_TREE,
892         WIMLIB_MODIFY_OP_ADD_TREE,
893         WIMLIB_MODIFY_OP_MOVE_TREE,
894 };
895
896 struct wimlib_modify_command {
897         enum wimlib_modify_op op;
898         union {
899                 struct wimlib_modify_command_delete_tree {
900                         int delete_tree_flags;
901                         const wimlib_tchar *tree_wim_path;
902                         unsigned long reserved;
903                 } delete_tree;
904
905                 struct wimlib_modify_command_add_tree {
906                         int add_tree_flags;
907                         const wimlib_tchar *fs_source_path;
908                         const wimlib_tchar *wim_target_path;
909                         unsigned long reserved;
910                 } add_tree;
911
912                 struct wimlib_modify_command_move_tree {
913                         int move_tree_flags;
914                         const wimlib_tchar *wim_source_path;
915                         const wimlib_tchar *wim_target_path;
916                         unsigned long reserved;
917                 } move_tree;
918         };
919 };
920 #endif
921
922
923 /**
924  * Possible values of the error code returned by many functions in wimlib.
925  *
926  * See the documentation for each wimlib function to see specifically what error
927  * codes can be returned by a given function, and what they mean.
928  */
929 /* Note: these are currently in alphabetic order, but new error codes should be
930  * added at the end to maintain a compatible ABI, except when it's being broken
931  * anyway. */
932 enum wimlib_error_code {
933         WIMLIB_ERR_SUCCESS = 0,
934         WIMLIB_ERR_ALREADY_LOCKED,
935         WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE,
936         WIMLIB_ERR_DECOMPRESSION,
937         WIMLIB_ERR_DELETE_STAGING_DIR,
938         WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED,
939         WIMLIB_ERR_FORK,
940         WIMLIB_ERR_FUSE,
941         WIMLIB_ERR_FUSERMOUNT,
942         WIMLIB_ERR_ICONV_NOT_AVAILABLE,
943         WIMLIB_ERR_IMAGE_COUNT,
944         WIMLIB_ERR_IMAGE_NAME_COLLISION,
945         WIMLIB_ERR_INSUFFICIENT_PRIVILEGES_TO_EXTRACT,
946         WIMLIB_ERR_INTEGRITY,
947         WIMLIB_ERR_INVALID_CAPTURE_CONFIG,
948         WIMLIB_ERR_INVALID_CHUNK_SIZE,
949         WIMLIB_ERR_INVALID_COMPRESSION_TYPE,
950         WIMLIB_ERR_INVALID_DENTRY,
951         WIMLIB_ERR_INVALID_HEADER_SIZE,
952         WIMLIB_ERR_INVALID_IMAGE,
953         WIMLIB_ERR_INVALID_INTEGRITY_TABLE,
954         WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY,
955         WIMLIB_ERR_INVALID_MULTIBYTE_STRING,
956         WIMLIB_ERR_INVALID_OVERLAY,
957         WIMLIB_ERR_INVALID_PARAM,
958         WIMLIB_ERR_INVALID_PART_NUMBER,
959         WIMLIB_ERR_INVALID_REPARSE_DATA,
960         WIMLIB_ERR_INVALID_RESOURCE_HASH,
961         WIMLIB_ERR_INVALID_RESOURCE_SIZE,
962         WIMLIB_ERR_INVALID_SECURITY_DATA,
963         WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE,
964         WIMLIB_ERR_INVALID_UTF16_STRING,
965         WIMLIB_ERR_INVALID_UTF8_STRING,
966         WIMLIB_ERR_LIBXML_UTF16_HANDLER_NOT_AVAILABLE,
967         WIMLIB_ERR_LINK,
968         WIMLIB_ERR_MKDIR,
969         WIMLIB_ERR_MQUEUE,
970         WIMLIB_ERR_NOMEM,
971         WIMLIB_ERR_NOTDIR,
972         WIMLIB_ERR_NOT_A_WIM_FILE,
973         WIMLIB_ERR_NO_FILENAME,
974         WIMLIB_ERR_NTFS_3G,
975         WIMLIB_ERR_OPEN,
976         WIMLIB_ERR_OPENDIR,
977         WIMLIB_ERR_READ,
978         WIMLIB_ERR_READLINK,
979         WIMLIB_ERR_RENAME,
980         WIMLIB_ERR_REOPEN,
981         WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED,
982         WIMLIB_ERR_RESOURCE_ORDER,
983         WIMLIB_ERR_SPECIAL_FILE,
984         WIMLIB_ERR_SPLIT_INVALID,
985         WIMLIB_ERR_SPLIT_UNSUPPORTED,
986         WIMLIB_ERR_STAT,
987         WIMLIB_ERR_TIMEOUT,
988         WIMLIB_ERR_UNICODE_STRING_NOT_REPRESENTABLE,
989         WIMLIB_ERR_UNKNOWN_VERSION,
990         WIMLIB_ERR_UNSUPPORTED,
991         WIMLIB_ERR_VOLUME_LACKS_FEATURES,
992         WIMLIB_ERR_WRITE,
993         WIMLIB_ERR_XML,
994 };
995
996
997 /** Used to indicate that no WIM image or an invalid WIM image. */
998 #define WIMLIB_NO_IMAGE         0
999
1000 /** Used to specify all images in the WIM. */
1001 #define WIMLIB_ALL_IMAGES       (-1)
1002
1003 /**
1004  * Adds an image to a WIM file from an on-disk directory tree or NTFS volume.
1005  *
1006  * The directory tree of NTFS volume is read immediately for the purpose of
1007  * constructing a directory entry tree in-memory.  Also, all files are read to
1008  * calculate their SHA1 message digests.  However, because the directory tree
1009  * may contain a very large amount of data, the files themselves are not read
1010  * into memory permanently, and instead references to their paths saved.  The
1011  * files are then read on-demand if wimlib_write() or wimlib_overwrite() is
1012  * called.
1013  *
1014  * See the manual page for the @b wimlib-imagex program for more information
1015  * about the "normal" capture mode versus the NTFS capture mode (entered by
1016  * providing the flag ::WIMLIB_ADD_IMAGE_FLAG_NTFS).
1017  *
1018  * Note that @b no changes are committed to the underlying WIM file (if
1019  * any) until wimlib_write() or wimlib_overwrite() is called.
1020  *
1021  * @param wim
1022  *      Pointer to the ::WIMStruct for a WIM file to which the image will be
1023  *      added.
1024  * @param source
1025  *      A path to a directory or unmounted NTFS volume that will be captured as
1026  *      a WIM image.
1027  * @param name
1028  *      The name to give the image.  This must be non-@c NULL.
1029  * @param config
1030  *      Capture configuration that specifies files, directories, or path globs
1031  *      to exclude from being captured.  If @c NULL, a dummy configuration where
1032  *      no paths are treated specially is used.
1033  * @param add_image_flags
1034  *      Bitwise OR of flags prefixed with WIMLIB_ADD_IMAGE_FLAG.
1035  * @param progress_func
1036  *      If non-NULL, a function that will be called periodically with the
1037  *      progress of the current operation.
1038  *
1039  * @return 0 on success; nonzero on error.  On error, changes to @a wim are
1040  * discarded so that it appears to be in the same state as when this function
1041  * was called.
1042  *
1043  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
1044  *      There is already an image named @a name in @a wim.
1045  * @retval ::WIMLIB_ERR_INVALID_CAPTURE_CONFIG
1046  *      @a config was not @c NULL and did not specify a valid image capture
1047  *      configuration.
1048  * @retval ::WIMLIB_ERR_INVALID_PARAM
1049  *      @a dir was @c NULL, @a name was @c NULL, or @a name was the empty string.
1050  * @retval ::WIMLIB_ERR_NOMEM
1051  *      Failed to allocate needed memory.
1052  * @retval ::WIMLIB_ERR_NOTDIR
1053  *      @a source is not a directory (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was
1054  *      not specified in @a add_image_flags).
1055  * @retval ::WIMLIB_ERR_NTFS_3G
1056  *      An error was returned from a libntfs-3g function when the NTFS volume
1057  *      was being opened, scanned, or closed (only if
1058  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags).
1059  * @retval ::WIMLIB_ERR_OPEN
1060  *      Failed to open a file or directory in the directory tree rooted at @a
1061  *      source (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a
1062  *      add_image_flags).
1063  * @retval ::WIMLIB_ERR_READ
1064  *      Failed to read a file in the directory tree rooted at @a source (only if
1065  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a add_image_flags).
1066  * @retval ::WIMLIB_ERR_SPECIAL_FILE
1067  *      The directory tree rooted at @a source contains a special file that is
1068  *      not a directory, regular file, or symbolic link.  This currently can
1069  *      only be returned if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a
1070  *      add_image_flags, but it may be returned for unsupported NTFS files in
1071  *      the future.
1072  * @retval ::WIMLIB_ERR_STAT
1073  *      Failed obtain the metadata for a file or directory in the directory tree
1074  *      rooted at @a source (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not
1075  *      specified in @a add_image_flags).
1076  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1077  *      @a wim is part of a split WIM.  Adding an image to a split WIM is
1078  *      unsupported.
1079  * @retval ::WIMLIB_ERR_UNSUPPORTED
1080  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags, but
1081  *      wimlib was configured with the @c --without-ntfs-3g flag.
1082  */
1083 extern int
1084 wimlib_add_image(WIMStruct *wim,
1085                  const wimlib_tchar *source,
1086                  const wimlib_tchar *name,
1087                  struct wimlib_capture_config *config,
1088                  int add_image_flags,
1089                  wimlib_progress_func_t progress_func);
1090
1091 /** This function is equivalent to wimlib_add_image() except it allows for
1092  * multiple sources to be combined into a single WIM image.  This is done by
1093  * specifying the @a sources and @a num_sources parameters instead of the @a
1094  * source parameter of wimlib_add_image().  The rest of the parameters are the
1095  * same as wimlib_add_image().  See the documentation for <b>wimlib-imagex
1096  * capture</b> for full details on how this mode works.
1097  *
1098  * Additional note:  @a sources is not a @c const parameter and you cannot
1099  * assume that its contents are valid after this function returns.  You must
1100  * save pointers to the strings in these structures if you need to free them
1101  * later, and/or save copies if needed.
1102  *
1103  * In addition to the error codes that wimlib_add_image() can return,
1104  * wimlib_add_image_multisource() can return ::WIMLIB_ERR_INVALID_OVERLAY
1105  * when trying to overlay a non-directory on a directory or when otherwise
1106  * trying to overlay multiple conflicting files to the same location in the WIM
1107  * image.  It will also return ::WIMLIB_ERR_INVALID_PARAM if
1108  * ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags but there
1109  * was not exactly one capture source with the target being the root directory.
1110  * (In this respect, there is no advantage to using
1111  * wimlib_add_image_multisource() instead of wimlib_add_image() when requesting
1112  * NTFS mode.) */
1113 extern int
1114 wimlib_add_image_multisource(WIMStruct *w,
1115                              struct wimlib_capture_source *sources,
1116                              size_t num_sources,
1117                              const wimlib_tchar *name,
1118                              struct wimlib_capture_config *config,
1119                              int add_image_flags,
1120                              wimlib_progress_func_t progress_func);
1121
1122 /**
1123  * Creates a ::WIMStruct for a new WIM file.
1124  *
1125  * This only creates an in-memory structure for a WIM that initially contains no
1126  * images.  No on-disk file is created until wimlib_write() is called.
1127  *
1128  * @param ctype
1129  *      The type of compression to be used in the new WIM file.  Must be
1130  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX, or
1131  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS.
1132  * @param wim_ret
1133  *      On success, a pointer to an opaque ::WIMStruct for the new WIM file is
1134  *      written to the memory location pointed to by this paramater.  The
1135  *      ::WIMStruct must be freed using using wimlib_free() when finished with
1136  *      it.
1137  * @return 0 on success; nonzero on error.
1138  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
1139  *      @a ctype was not ::WIMLIB_COMPRESSION_TYPE_NONE,
1140  *      ::WIMLIB_COMPRESSION_TYPE_LZX, or ::WIMLIB_COMPRESSION_TYPE_XPRESS.
1141  * @retval ::WIMLIB_ERR_NOMEM
1142  *      Failed to allocate needed memory.
1143  */
1144 extern int
1145 wimlib_create_new_wim(int ctype, WIMStruct **wim_ret);
1146
1147 /**
1148  * Deletes an image, or all images, from a WIM file.
1149  *
1150  * All streams referenced by the image(s) being deleted are removed from the
1151  * lookup table of the WIM if they are not referenced by any other images in the
1152  * WIM.
1153  *
1154  * Please note that @b no changes are committed to the underlying WIM file (if
1155  * any) until wimlib_write() or wimlib_overwrite() is called.
1156  *
1157  * @param wim
1158  *      Pointer to the ::WIMStruct for the WIM file that contains the image(s)
1159  *      being deleted.
1160  * @param image
1161  *      The number of the image to delete, or ::WIMLIB_ALL_IMAGES to delete all
1162  *      images.
1163  * @return 0 on success; nonzero on failure.  On failure, @a wim is guaranteed
1164  * to be left unmodified only if @a image specified a single image.  If instead
1165  * @a image was ::WIMLIB_ALL_IMAGES and @a wim contained more than one image, it's
1166  * possible for some but not all of the images to have been deleted when a
1167  * failure status is returned.
1168  *
1169  * @retval ::WIMLIB_ERR_DECOMPRESSION
1170  *      Could not decompress the metadata resource for @a image.
1171  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1172  *      A directory entry in the metadata resource for @a image in the WIM is
1173  *      invalid.
1174  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1175  *      @a image does not exist in the WIM and is not ::WIMLIB_ALL_IMAGES.
1176  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1177  *      The metadata resource for @a image in the WIM is invalid.
1178  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1179  *      The security data for @a image in the WIM is invalid.
1180  * @retval ::WIMLIB_ERR_NOMEM
1181  *      Failed to allocate needed memory.
1182  * @retval ::WIMLIB_ERR_READ
1183  *      Could not read the metadata resource for @a image from the WIM.
1184  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1185  *      @a wim is part of a split WIM.  Deleting an image from a split WIM is
1186  *      unsupported.
1187  */
1188 extern int
1189 wimlib_delete_image(WIMStruct *wim, int image);
1190
1191 /**
1192  * Exports an image, or all the images, from a WIM file, into another WIM file.
1193  *
1194  * The destination image is made to share the same dentry tree and security data
1195  * structure as the source image.  This places some restrictions on additional
1196  * functions that may be called.  wimlib_mount_image() may not be called on
1197  * either the source image or the destination image without an intervening call
1198  * to a function that un-shares the images, such as wimlib_free() on @a
1199  * dest_wim, or wimlib_delete_image() on either the source or destination image.
1200  * Furthermore, you may not call wimlib_free() on @a src_wim before calling
1201  * wimlib_write() or wimlib_overwrite() on @a dest_wim because @a dest_wim will
1202  * have references back to @a src_wim.
1203  *
1204  * Previous versions of this function left @a dest_wim in an indeterminate state
1205  * on failure.  This is no longer the case; all changes to @a dest_wim made by
1206  * this function are rolled back on failure.
1207  *
1208  * Previous versions of this function did not allow exporting an image that had
1209  * been added by wimlib_add_image().  This is no longer the case; you may now
1210  * export an image regardless of how it was added.
1211  *
1212  * Regardless of whether this function succeeds or fails, no changes are made to
1213  * @a src_wim.
1214  *
1215  * Please note that no changes are committed to the underlying WIM file of @a
1216  * dest_wim (if any) until wimlib_write() or wimlib_overwrite() is called.
1217  *
1218  * @param src_wim
1219  *      Pointer to the ::WIMStruct for a stand-alone WIM or part 1 of a split
1220  *      WIM that contains the image(s) being exported.
1221  * @param src_image
1222  *      The image to export from @a src_wim.  Can be the number of an image, or
1223  *      ::WIMLIB_ALL_IMAGES to export all images.
1224  * @param dest_wim
1225  *      Pointer to the ::WIMStruct for a WIM file that will receive the images
1226  *      being exported.
1227  * @param dest_name
1228  *      The name to give the exported image in the new WIM file.  If left @c
1229  *      NULL, the name from @a src_wim is used.  This parameter must be left @c
1230  *      NULL if @a src_image is ::WIMLIB_ALL_IMAGES and @a src_wim contains more
1231  *      than one image; in that case, the names are all taken from the @a
1232  *      src_wim.  (This is allowed even if one or more images being exported has
1233  *      no name.)
1234  * @param dest_description
1235  *      The description to give the exported image in the new WIM file.  If left
1236  *      @c NULL, the description from the @a src_wim is used.  This parameter must
1237  *      be left @c NULL if @a src_image is ::WIMLIB_ALL_IMAGES and @a src_wim contains
1238  *      more than one image; in that case, the descriptions are all taken from
1239  *      @a src_wim.  (This is allowed even if one or more images being exported
1240  *      has no description.)
1241  * @param export_flags
1242  *      ::WIMLIB_EXPORT_FLAG_BOOT if the image being exported is to be made
1243  *      bootable, or 0 if which image is marked as bootable in the destination
1244  *      WIM is to be left unchanged.  If @a src_image is ::WIMLIB_ALL_IMAGES and
1245  *      there are multiple images in @a src_wim, specifying
1246  *      ::WIMLIB_EXPORT_FLAG_BOOT is valid only if one of the exported images is
1247  *      currently marked as bootable in @a src_wim; if that is the case, then
1248  *      that image is marked as bootable in the destination WIM.
1249  * @param additional_swms
1250  *      Array of pointers to the ::WIMStruct for each additional part in the
1251  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1252  *      need to be in any particular order, but they must include all parts of
1253  *      the split WIM other than the first part, which must be provided in the
1254  *      @a wim parameter.
1255  * @param num_additional_swms
1256  *      Number of additional WIM parts provided in the @a additional_swms array.
1257  *      This number should be one less than the total number of parts in the
1258  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1259  * @param progress_func
1260  *      If non-NULL, a function that will be called periodically with the
1261  *      progress of the current operation.
1262  *
1263  * @return 0 on success; nonzero on error.
1264  * @retval ::WIMLIB_ERR_DECOMPRESSION
1265  *      Could not decompress the metadata resource for @a src_image
1266  *      in @a src_wim
1267  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
1268  *      One or more of the names being given to an exported image was already in
1269  *      use in the destination WIM.
1270  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1271  *      A directory entry in the metadata resource for @a src_image in @a
1272  *      src_wim is invalid.
1273  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1274  *      @a src_image does not exist in @a src_wim.
1275  * @retval ::WIMLIB_ERR_INVALID_PARAM
1276  *      ::WIMLIB_EXPORT_FLAG_BOOT was specified in @a flags, @a src_image was
1277  *      ::WIMLIB_ALL_IMAGES, @a src_wim contains multiple images, and no images in
1278  *      @a src_wim are marked as bootable; or @a dest_name and/or @a
1279  *      dest_description were non-<code>NULL</code>, @a src_image was
1280  *      ::WIMLIB_ALL_IMAGES, and @a src_wim contains multiple images.
1281  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1282  *      The metadata resource for @a src_image in @a src_wim is invalid.
1283  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1284  *      The security data for @a src_image in @a src_wim is invalid.
1285  * @retval ::WIMLIB_ERR_NOMEM
1286  *      Failed to allocate needed memory.
1287  * @retval ::WIMLIB_ERR_READ
1288  *      Could not read the metadata resource for @a src_image from @a src_wim.
1289  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1290  *      The source WIM is a split WIM, but the parts specified do not form a
1291  *      complete split WIM because they do not include all the parts of the
1292  *      original WIM, there are duplicate parts, or not all the parts have the
1293  *      same GUID and compression type.
1294  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1295  *      @a dest_wim is part of a split WIM.  Exporting an image to a split WIM
1296  *      is unsupported.
1297  */
1298 extern int
1299 wimlib_export_image(WIMStruct *src_wim, int src_image,
1300                     WIMStruct *dest_wim,
1301                     const wimlib_tchar *dest_name,
1302                     const wimlib_tchar *dest_description,
1303                     int export_flags,
1304                     WIMStruct **additional_swms,
1305                     unsigned num_additional_swms,
1306                     wimlib_progress_func_t progress_func);
1307
1308 /**
1309  * Extracts an image, or all images, from a standalone or split WIM file to a
1310  * directory or a NTFS volume.
1311  *
1312  * Please see the manual page for the @c wimlib-imagex program for more
1313  * information about the "normal" extraction mode versus the NTFS extraction
1314  * mode (entered by providing flag ::WIMLIB_EXTRACT_FLAG_NTFS).
1315  *
1316  * Extraction is done with one thread.
1317  *
1318  * All extracted data is SHA1-summed, and ::WIMLIB_ERR_INVALID_RESOURCE_HASH is
1319  * returned if any resulting SHA1 message digests do not match the values
1320  * provided in the WIM file.  Therefore, if this function is successful, you can
1321  * be fairly sure that any compressed data in the WIM was uncompressed
1322  * correctly.
1323  *
1324  * @param wim
1325  *      Pointer to the ::WIMStruct for a standalone WIM file, or part 1 of a
1326  *      split WIM.
1327  * @param image
1328  *      The image to extract.  Can be the number of an image, or ::WIMLIB_ALL_IMAGES
1329  *      to specify that all images are to be extracted.  ::WIMLIB_ALL_IMAGES cannot
1330  *      be used if ::WIMLIB_EXTRACT_FLAG_NTFS is specified in @a extract_flags.
1331  * @param target
1332  *      Directory to extract the WIM image(s) to (created if it does not already
1333  *      exist); or, with ::WIMLIB_EXTRACT_FLAG_NTFS in @a extract_flags, the
1334  *      path to the unmounted NTFS volume to extract the image to.
1335  * @param extract_flags
1336  *      Bitwise OR of the flags prefixed with WIMLIB_EXTRACT_FLAG.
1337  *      <br/> <br/>
1338  *      If ::WIMLIB_EXTRACT_FLAG_NTFS is specified, @a target is interpreted as
1339  *      a NTFS volume to extract the image to.  The volume will be opened using
1340  *      NTFS-3g and the image will be extracted to the root of the NTFS volume.
1341  *      Otherwise, @a target is interpreted as a directory to extract the
1342  *      image(s) to.
1343  *      <br/> <br/>
1344  *      If ::WIMLIB_EXTRACT_FLAG_NTFS is not specified, one or none of
1345  *      ::WIMLIB_EXTRACT_FLAG_HARDLINK or ::WIMLIB_EXTRACT_FLAG_SYMLINK may be
1346  *      specified.  These flags cause extracted files that are identical to be
1347  *      hardlinked or symlinked together, depending on the flag.  These flags
1348  *      override the hard link groups that are specified in the WIM file itself.
1349  *      If ::WIMLIB_ALL_IMAGES is provided as the @a image parameter, files may be
1350  *      hardlinked or symlinked across images if a file is found to occur in
1351  *      more than one image.
1352  *      <br/> <br/>
1353  *      You may also specify the flag ::WIMLIB_EXTRACT_FLAG_VERBOSE to print the
1354  *      name of each file or directory as it is extracted.
1355  *      <br/> <br/>
1356  *      If ::WIMLIB_EXTRACT_FLAG_SEQUENTIAL is specified, data is read from the
1357  *      WIM sequentially, if possible.  If ::WIMLIB_ALL_IMAGES is specified,
1358  *      each image is considered separately with regards to the sequential
1359  *      order.  It is also possible for alternate data streams to break the
1360  *      sequential order (this only applies if ::WIMLIB_EXTRACT_FLAG_NTFS is
1361  *      specified).
1362  * @param additional_swms
1363  *      Array of pointers to the ::WIMStruct for each additional part in the
1364  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1365  *      need to be in any particular order, but they must include all parts of
1366  *      the split WIM other than the first part, which must be provided in the
1367  *      @a wim parameter.
1368  * @param num_additional_swms
1369  *      Number of additional WIM parts provided in the @a additional_swms array.
1370  *      This number should be one less than the total number of parts in the
1371  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1372  *
1373  * @param progress_func
1374  *      If non-NULL, a function that will be called periodically with the
1375  *      progress of the current operation.
1376  *
1377  * @return 0 on success; nonzero on error.
1378  * @retval ::WIMLIB_ERR_DECOMPRESSION
1379  *      Could not decompress a resource (file or metadata) for @a image in @a
1380  *      wim.
1381  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1382  *      A directory entry in the metadata resource for @a image in @a wim is
1383  *      invalid.
1384  * @retval ::WIMLIB_ERR_INVALID_PARAM
1385  *      @a target was @c NULL, or both ::WIMLIB_EXTRACT_FLAG_HARDLINK and
1386  *      ::WIMLIB_EXTRACT_FLAG_SYMLINK were specified in @a extract_flags; or
1387  *      both ::WIMLIB_EXTRACT_FLAG_NTFS and either
1388  *      ::WIMLIB_EXTRACT_FLAG_HARDLINK or ::WIMLIB_EXTRACT_FLAG_SYMLINK were
1389  *      specified in @a extract_flags; or ::WIMLIB_EXTRACT_FLAG_NTFS was
1390  *      specified in @a extract_flags and @a image was ::WIMLIB_ALL_IMAGES; or
1391  *      both ::WIMLIB_EXTRACT_FLAG_NTFS and ::WIMLIB_EXTRACT_FLAG_UNIX_DATA were
1392  *      specified in @a extract_flag.
1393  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
1394  *      The SHA1 message digest of an extracted stream did not match the SHA1
1395  *      message digest given in the WIM file.
1396  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1397  *      A resource (file or metadata) for @a image in @a wim is invalid.
1398  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1399  *      The security data for @a image in @a wim is invalid.
1400  * @retval ::WIMLIB_ERR_LINK
1401 *       Failed to create a symbolic link or a hard link (only if
1402  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1403  * @retval ::WIMLIB_ERR_MKDIR
1404  *      Failed create a needed directory (only if ::WIMLIB_EXTRACT_FLAG_NTFS was
1405  *      not specified in @a extract_flags).
1406  * @retval ::WIMLIB_ERR_NOMEM
1407  *      Failed to allocate needed memory.
1408  * @retval ::WIMLIB_ERR_NTFS_3G
1409  *      An error was returned from a libntfs-3g function while the WIM image was
1410  *      being extracted to the NTFS volume (only if ::WIMLIB_EXTRACT_FLAG_NTFS
1411  *      was specified in @a extract_flags).
1412  * @retval ::WIMLIB_ERR_OPEN
1413  *      Could not open one of the files being extracted for writing (only if
1414  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1415  * @retval ::WIMLIB_ERR_READ
1416  *      A unexpected end-of-file or read error occurred when trying to read data
1417  *      from the WIM file associated with @a wim.
1418  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1419  *      The WIM is a split WIM, but the parts specified do not form a complete
1420  *      split WIM because they do not include all the parts of the original WIM,
1421  *      there are duplicate parts, or not all the parts have the same GUID and
1422  *      compression type.
1423  * @retval ::WIMLIB_ERR_UNSUPPORTED
1424  *      ::WIMLIB_EXTRACT_FLAG_NTFS was specified in @a extract_flags, but wimlib
1425  *      was configured with the @c --without-ntfs-3g flag.
1426  * @retval ::WIMLIB_ERR_WRITE
1427  *      Failed to write a file being extracted (only if
1428  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1429  */
1430 extern int
1431 wimlib_extract_image(WIMStruct *wim, int image,
1432                      const wimlib_tchar *target,
1433                      int extract_flags,
1434                      WIMStruct **additional_swms,
1435                      unsigned num_additional_swms,
1436                      wimlib_progress_func_t progress_func);
1437
1438 /**
1439  * Extracts the XML data of a WIM file to a file stream.  Every WIM file
1440  * includes a string of XML that describes the images contained in the WIM.
1441  * This function works on standalone WIMs as well as split WIM parts.
1442  *
1443  * @param wim
1444  *      Pointer to the ::WIMStruct for a WIM file.
1445  * @param fp
1446  *      @c stdout, or a FILE* opened for writing, to extract the data to.
1447  *
1448  * @return 0 on success; nonzero on error.
1449  * @retval ::WIMLIB_ERR_WRITE
1450  *      Failed to completely write the XML data to @a fp.
1451  * @retval ::WIMLIB_ERR_INVALID_PARAM
1452  *      @a wim is not a ::WIMStruct that was created by wimlib_open_wim().
1453  */
1454 extern int
1455 wimlib_extract_xml_data(WIMStruct *wim, FILE *fp);
1456
1457 /**
1458  * Frees all memory allocated for a WIMStruct and closes all files associated
1459  * with it.
1460  *
1461  * @param wim
1462  *      Pointer to the ::WIMStruct for a WIM file.
1463  *
1464  * @return This function has no return value.
1465  */
1466 extern void
1467 wimlib_free(WIMStruct *wim);
1468
1469 /**
1470  * Returns the index of the bootable image of the WIM.
1471  *
1472  * @param wim
1473  *      Pointer to the ::WIMStruct for a WIM file.
1474  *
1475  * @return
1476  *      0 if no image is marked as bootable, or the number of the image marked
1477  *      as bootable (numbered starting at 1).
1478  */
1479 extern int
1480 wimlib_get_boot_idx(const WIMStruct *wim);
1481
1482 /**
1483  * Returns the compression type used in the WIM.
1484  *
1485  * @param wim
1486  *      Pointer to the ::WIMStruct for a WIM file
1487  *
1488  * @return
1489  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX, or
1490  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS.
1491  */
1492 extern int
1493 wimlib_get_compression_type(const WIMStruct *wim);
1494
1495 /**
1496  * Converts a ::wimlib_compression_type value into a string.
1497  *
1498  * @param ctype
1499  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX,
1500  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS, or another value.
1501  *
1502  * @return
1503  *      A statically allocated string: "None", "LZX", "XPRESS", or "Invalid",
1504  *      respectively.
1505  */
1506 extern const wimlib_tchar *
1507 wimlib_get_compression_type_string(int ctype);
1508
1509 /**
1510  * Converts an error code into a string describing it.
1511  *
1512  * @param code
1513  *      The error code returned by one of wimlib's functions.
1514  *
1515  * @return
1516  *      Pointer to a statically allocated string describing the error code,
1517  *      or @c NULL if the error code is not valid.
1518  */
1519 extern const wimlib_tchar *
1520 wimlib_get_error_string(enum wimlib_error_code code);
1521
1522 /**
1523  * Returns the description of the specified image.
1524  *
1525  * @param wim
1526  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1527  *      standalone WIM or a split WIM part.
1528  * @param image
1529  *      The number of the image, numbered starting at 1.
1530  *
1531  * @return
1532  *      The description of the image, or @c NULL if there is no such image, or
1533  *      @c NULL if the specified image has no description.  The description
1534  *      string is in library-internal memory and may not be modified or freed;
1535  *      in addition, the string will become invalid if the description of the
1536  *      image is changed, the image is deleted, or the ::WIMStruct is destroyed.
1537  */
1538 extern const wimlib_tchar *
1539 wimlib_get_image_description(const WIMStruct *wim, int image);
1540
1541 /**
1542  * Returns the name of the specified image.
1543  *
1544  * @param wim
1545  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1546  *      standalone WIM or a split WIM part.
1547  * @param image
1548  *      The number of the image, numbered starting at 1.
1549  *
1550  * @return
1551  *      The name of the image, or @c NULL if there is no such image.  The name
1552  *      string is in library-internal memory and may not be modified or freed;
1553  *      in addition, the string will become invalid if the name of the image is
1554  *      changed, the image is deleted, or the ::WIMStruct is destroyed.
1555  *
1556  *      If @a wim was read with wimlib_open_wim(), it is allowed for image(s) in
1557  *      the WIM to be unnamed, in which case an empty string will be returned
1558  *      when the corresponding name is requested.
1559  */
1560 extern const wimlib_tchar *
1561 wimlib_get_image_name(const WIMStruct *wim, int image);
1562
1563
1564 /**
1565  * Returns the number of images contained in a WIM.
1566  *
1567  * @param wim
1568  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1569  *      standalone WIM or a split WIM part.
1570  *
1571  * @return
1572  *      The number of images contained in the WIM file.
1573  */
1574 extern int
1575 wimlib_get_num_images(const WIMStruct *wim);
1576
1577 /**
1578  * Returns the part number of a WIM in a split WIM and the total number of parts
1579  * of the split WIM.
1580  *
1581  * @param wim
1582  *      Pointer to the ::WIMStruct for a WIM file.
1583  * @param total_parts_ret
1584  *      If non-@c NULL, the total number of parts in the split WIM (1 for
1585  *      non-split WIMs) is written to this location.
1586  *
1587  * @return
1588  *      The part number of the WIM (1 for non-split WIMs)
1589  */
1590 extern int
1591 wimlib_get_part_number(const WIMStruct *wim, int *total_parts_ret);
1592
1593 /**
1594  * Since wimlib 1.2.6:  Initialization function for wimlib.  This is not
1595  * re-entrant.  If you are calling wimlib functions concurrently in different
1596  * threads, then you must call this function serially first.
1597  *
1598  * Since wimlib 1.3.0, you must call this function if the character encoding of
1599  * the current locale is not UTF-8 and you do not want wimlib to assume a UTF-8
1600  * encoding.
1601  *
1602  * Since wimlib 1.3.2, you must call this function if using the Windows-native
1603  * build of the library so that certain functions can be dynamically loaded from
1604  * system DLLs.
1605  *
1606  * Since wimlib 1.3.3, this function takes the @a init_flags parameter.
1607  *
1608  * @param init_flags
1609  *      ::WIMLIB_INIT_FLAG_ASSUME_UTF8 if wimlib should assume that all input
1610  *      data, including filenames, are in UTF-8, and that UTF-8 data can be
1611  *      directly printed to the console.
1612  *
1613  * @return 0; other error codes may be returned in future releases.
1614  */
1615 extern int
1616 wimlib_global_init(int init_flags);
1617
1618 /**
1619  * Since wimlib 1.2.6:  Cleanup function for wimlib.  This is not re-entrant.
1620  * You are not required to call this function, but it will release any global
1621  * memory allocated by the library.
1622  */
1623 extern void
1624 wimlib_global_cleanup();
1625
1626 /**
1627  * Returns true if the WIM has an integrity table.
1628  *
1629  * @param wim
1630  *      Pointer to the ::WIMStruct for a WIM file.
1631  * @return
1632  *      @c true if the WIM has an integrity table; @c false otherwise.  If @a
1633  *      wim is a ::WIMStruct created with wimlib_create_new_wim() rather than
1634  *      wimlib_open_wim(), @c false will be returned, even if wimlib_write() has
1635  *      been called on @a wim with ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY set.
1636  */
1637 extern bool
1638 wimlib_has_integrity_table(const WIMStruct *wim);
1639
1640 /**
1641  * Determines if an image name is already used by some image in the WIM.
1642  *
1643  * @param wim
1644  *      Pointer to the ::WIMStruct for a WIM file.
1645  * @param name
1646  *      The name to check.
1647  *
1648  * @return
1649  *      @c true if there is already an image in @a wim named @a name; @c false
1650  *      if there is no image named @a name in @a wim.  If @a name is @c NULL or
1651  *      the empty string, @c false is returned.
1652  */
1653 extern bool
1654 wimlib_image_name_in_use(const WIMStruct *wim, const wimlib_tchar *name);
1655
1656 /**
1657  * Joins a split WIM into a stand-alone one-part WIM.
1658  *
1659  * @param swms
1660  *      An array of strings that gives the filenames of all parts of the split
1661  *      WIM.  No specific order is required, but all parts must be included with
1662  *      no duplicates.
1663  * @param num_swms
1664  *      Number of filenames in @a swms.
1665  * @param swm_open_flags
1666  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY if the integrity of each split WIM
1667  *      part should be verified, if integrity tables are present.  Otherwise,
1668  *      set to 0.
1669  * @param wim_write_flags
1670  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY, and/or ::WIMLIB_WRITE_FLAG_FSYNC.
1671  * @param output_path
1672  *      The path to write the one-part WIM to.
1673  * @param progress_func
1674  *      If non-NULL, a function that will be called periodically with the
1675  *      progress of the current operation.
1676  *
1677  * @return 0 on success; nonzero on error.  This function may return any value
1678  * returned by wimlib_open_wim() and wimlib_write() except
1679  * ::WIMLIB_ERR_SPLIT_UNSUPPORTED, as well as the following error code:
1680  *
1681  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1682  *      The split WIMs do not form a valid WIM because they do not include all
1683  *      the parts of the original WIM, there are duplicate parts, or not all the
1684  *      parts have the same GUID and compression type.
1685  *
1686  * Note: the WIM's uncompressed and compressed resources are not checksummed
1687  * when they are copied from the split WIM parts to the joined WIM, nor are
1688  * compressed resources re-compressed.
1689  *
1690  * Note: wimlib_export_image() can provide similar functionality to
1691  * wimlib_join(), since it is possible to export all images from a split WIM.
1692  */
1693 extern int
1694 wimlib_join(const wimlib_tchar * const *swms,
1695             unsigned num_swms,
1696             const wimlib_tchar *output_path,
1697             int swm_open_flags,
1698             int wim_write_flags,
1699             wimlib_progress_func_t progress_func);
1700
1701 /**
1702  * Compress a chunk of a WIM resource using LZX compression.
1703  *
1704  * This function is exported for convenience only and need not be used.
1705  *
1706  * @param chunk
1707  *      Uncompressed data of the chunk.
1708  * @param chunk_size
1709  *      Size of the uncompressed chunk, in bytes.
1710  * @param out
1711  *      Pointer to output buffer of size at least (@a chunk_size - 1) bytes.
1712  *
1713  * @return
1714  *      The size of the compressed data written to @a out in bytes, or 0 if the
1715  *      data could not be compressed to (@a chunk_size - 1) bytes or fewer.
1716  *
1717  * As a special requirement, the compression code is optimized for the WIM
1718  * format and therefore requires (@a chunk_size <= 32768).
1719  */
1720 extern unsigned
1721 wimlib_lzx_compress(const void *chunk, unsigned chunk_size, void *out);
1722
1723 /**
1724  * Decompresses a block of LZX-compressed data as used in the WIM file format.
1725  *
1726  * Note that this will NOT work unmodified for LZX as used in the cabinet
1727  * format, which is not the same as in the WIM format!
1728  *
1729  * This function is exported for convenience only and need not be used.
1730  *
1731  * @param compressed_data
1732  *      Pointer to the compressed data.
1733  *
1734  * @param compressed_len
1735  *      Length of the compressed data, in bytes.
1736  *
1737  * @param uncompressed_data
1738  *      Pointer to the buffer into which to write the uncompressed data.
1739  *
1740  * @param uncompressed_len
1741  *      Length of the uncompressed data.  It must be 32768 bytes or less.
1742  *
1743  * @return
1744  *      0 on success; non-zero on failure.
1745  */
1746 extern int
1747 wimlib_lzx_decompress(const void *compressed_data, unsigned compressed_len,
1748                       void *uncompressed_data, unsigned uncompressed_len);
1749
1750
1751 /**
1752  * Mounts an image in a WIM file on a directory read-only or read-write.
1753  *
1754  * Unless ::WIMLIB_MOUNT_FLAG_DEBUG is specified or an early error occurs, the
1755  * process shall be daemonized.
1756  *
1757  * If the mount is read-write (::WIMLIB_MOUNT_FLAG_READWRITE specified),
1758  * modifications to the WIM are staged in a temporary directory.
1759  *
1760  * It is safe to mount multiple images from the same WIM file read-only at the
1761  * same time, but only if different ::WIMStruct's are used.  It is @b not safe
1762  * to mount multiple images from the same WIM file read-write at the same time.
1763  *
1764  * wimlib_mount_image() cannot be used on an image that was exported with
1765  * wimlib_export_image() while the dentry trees for both images are still in
1766  * memory.  In addition, wimlib_mount_image() may not be used to mount an image
1767  * that has just been added with wimlib_add_image(), unless the WIM has been
1768  * written and read into a new ::WIMStruct.
1769  *
1770  * @param wim
1771  *      Pointer to the ::WIMStruct containing the image to be mounted.
1772  * @param image
1773  *      The number of the image to mount, indexed starting from it.  It must be
1774  *      an existing, single image.
1775  * @param dir
1776  *      The path to an existing empty directory to mount the image on.
1777  * @param mount_flags
1778  *      Bitwise OR of the flags prefixed with WIMLIB_MOUNT_FLAG.
1779  *      <br/><br/>
1780  *      If ::WIMLIB_MOUNT_FLAG_READWRITE is given, the WIM is mounted read-write
1781  *      rather than the default of read-only.
1782  *      <br/> <br/>
1783  *      WIMs may contain named (alternate) data streams, which are a somewhat
1784  *      obscure NTFS feature.  They can be read and written on a mounted WIM
1785  *      through one of several interfaces.  The interface to use if specified by
1786  *      exactly one of ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE,
1787  *      ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR, or
1788  *      ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS.  The default interface is
1789  *      the XATTR interface.
1790  * @param additional_swms
1791  *      Array of pointers to the ::WIMStruct for each additional part in the
1792  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1793  *      need to be in any particular order, but they must include all parts of
1794  *      the split WIM other than the first part, which must be provided in the
1795  *      @a wim parameter.
1796  * @param num_additional_swms
1797  *      Number of additional WIM parts provided in the @a additional_swms array.
1798  *      This number should be one less than the total number of parts in the
1799  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1800  * @param staging_dir
1801  *      If non-NULL, the name of a directory in which the staging directory will
1802  *      be created.  Ignored if ::WIMLIB_MOUNT_FLAG_READWRITE is not specified
1803  *      in @a mount_flags.  If left @c NULL, the staging directory is created in
1804  *      the same directory as the WIM file that @a wim was originally read from.
1805  *
1806  * @return 0 on success; nonzero on error.
1807  *
1808  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
1809  *      A read-write mount was requested, but an an exclusive advisory lock on
1810  *      the on-disk WIM file could not be acquired because another thread or
1811  *      process has mounted an image from the WIM read-write or is currently
1812  *      modifying the WIM in-place.
1813  * @retval ::WIMLIB_ERR_DECOMPRESSION
1814  *      Could not decompress the metadata resource for @a image in @a wim.
1815  * @retval ::WIMLIB_ERR_FUSE
1816  *      A non-zero status was returned by @c fuse_main().
1817  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1818  *      A directory entry in the metadata resource for @a image in @a wim is
1819  *      invalid.
1820  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1821  *      @a image does not specify an existing, single image in @a wim.
1822  * @retval ::WIMLIB_ERR_INVALID_PARAM
1823  *      @a image is shared among multiple ::WIMStruct's as a result of a call to
1824  *      wimlib_export_image(), or @a image has been added with
1825  *      wimlib_add_image().
1826  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1827  *      The metadata resource for @a image in @a wim is invalid.
1828  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1829  *      The security data for @a image in @a wim is invalid.
1830  * @retval ::WIMLIB_ERR_MKDIR
1831  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @a mount_flags, but the
1832  *      staging directory could not be created.
1833  * @retval ::WIMLIB_ERR_NOMEM
1834  *      Failed to allocate needed memory.
1835  * @retval ::WIMLIB_ERR_NOTDIR
1836  *      Could not determine the current working directory.
1837  * @retval ::WIMLIB_ERR_READ
1838  *      An unexpected end-of-file or read error occurred when trying to read
1839  *      data from the WIM file associated with @a wim.
1840  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1841  *      The WIM is a split WIM, but the parts specified do not form a complete
1842  *      split WIM because they do not include all the parts of the original WIM,
1843  *      there are duplicate parts, or not all the parts have the same GUID and
1844  *      compression type.
1845  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1846  *      The WIM is a split WIM and a read-write mount was requested.  We only
1847  *      support mounting a split WIM read-only.
1848  */
1849 extern int
1850 wimlib_mount_image(WIMStruct *wim,
1851                    int image,
1852                    const wimlib_tchar *dir,
1853                    int mount_flags,
1854                    WIMStruct **additional_swms,
1855                    unsigned num_additional_swms,
1856                    const wimlib_tchar *staging_dir);
1857
1858 /**
1859  * Opens a WIM file and creates a ::WIMStruct for it.
1860  *
1861  * @param wim_file
1862  *      The path to the WIM file to open.
1863  * @param open_flags
1864  *      Bitwise OR of flags ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
1865  *      ::WIMLIB_OPEN_FLAG_SPLIT_OK.
1866  *      <br/> <br/>
1867  *      If ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is given, the integrity table of
1868  *      the WIM, if it exists, is checked, and this function will fail with an
1869  *      ::WIMLIB_ERR_INTEGRITY status if any of the computed SHA1 message
1870  *      digests of the WIM do not exactly match the corresponding message
1871  *      digests given in the integrity table.
1872  *      <br/> <br/>
1873  *      If ::WIMLIB_OPEN_FLAG_SPLIT_OK is given, no error will be issued if the
1874  *      WIM is part of a split WIM; otherwise ::WIMLIB_ERR_SPLIT_UNSUPPORTED is
1875  *      returned.  (This flag may be removed in the future, in which case no
1876  *      error will be issued when opening a split WIM.)
1877  *
1878  * @param progress_func
1879  *      If non-NULL, a function that will be called periodically with the
1880  *      progress of the current operation.
1881  *
1882  * @param wim_ret
1883  *      On success, a pointer to an opaque ::WIMStruct for the opened WIM file
1884  *      is written to the memory location pointed to by this parameter.  The
1885  *      ::WIMStruct must be freed using using wimlib_free() when finished with
1886  *      it.
1887  *
1888  * @return 0 on success; nonzero on error.
1889  * @retval ::WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE
1890  *      The lookup table of @a wim_file is compressed.  Support for this can be
1891  *      added to wimlib if needed, but it appears to be the case that the lookup
1892  *      table is never compressed.
1893  * @retval ::WIMLIB_ERR_IMAGE_COUNT
1894  *      The WIM is not the non-first part of a split WIM, and the number of
1895  *      metadata resources found in the WIM did not match the image count given
1896  *      in the WIM header, or the number of &lt;IMAGE&gt; elements in the XML
1897  *      data for the WIM did not match the image count given in the WIM header.
1898  * @retval ::WIMLIB_ERR_INTEGRITY
1899  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a open_flags and @a
1900  *      wim_file contains an integrity table, but the SHA1 message digest for a
1901  *      chunk of the WIM does not match the corresponding message digest given
1902  *      in the integrity table.
1903  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
1904  *      Resources in @a wim_file are compressed, but the chunk size is not 32768.
1905  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
1906  *      The header of @a wim_file says that resources in the WIM are compressed,
1907  *      but the header flag indicating LZX or XPRESS compression is not set.
1908  * @retval ::WIMLIB_ERR_INVALID_HEADER_SIZE
1909  *      The length field of the WIM header is not 208.
1910  * @retval ::WIMLIB_ERR_INVALID_INTEGRITY_TABLE
1911  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a open_flags and @a
1912  *      wim_file contains an integrity table, but the integrity table is
1913  *      invalid.
1914  * @retval ::WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
1915  *      The lookup table for the WIM contained duplicate entries that are not
1916  *      for metadata resources, or it contained an entry with a SHA1 message
1917  *      digest of all 0's.
1918  * @retval ::WIMLIB_ERR_NOMEM
1919  *      Failed to allocated needed memory.
1920  * @retval ::WIMLIB_ERR_NOT_A_WIM_FILE
1921  *      @a wim_file does not begin with the expected magic characters.
1922  * @retval ::WIMLIB_ERR_OPEN
1923  *      Failed to open the file @a wim_file for reading.
1924  * @retval ::WIMLIB_ERR_READ
1925  *      An unexpected end-of-file or read error occurred when trying to read
1926  *      data from @a wim_file.
1927  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1928  *      @a wim_file is a split WIM, but ::WIMLIB_OPEN_FLAG_SPLIT_OK was not
1929  *      specified in @a open_flags.
1930  * @retval ::WIMLIB_ERR_UNKNOWN_VERSION
1931  *      A number other than 0x10d00 is written in the version field of the WIM
1932  *      header of @a wim_file.  (Probably a pre-Vista WIM).
1933  * @retval ::WIMLIB_ERR_XML
1934  *      The XML data for @a wim_file is invalid.
1935  */
1936 extern int
1937 wimlib_open_wim(const wimlib_tchar *wim_file,
1938                 int open_flags,
1939                 WIMStruct **wim_ret,
1940                 wimlib_progress_func_t progress_func);
1941
1942 /**
1943  * Overwrites the file that the WIM was originally read from, with changes made.
1944  * This only makes sense for ::WIMStruct's obtained from wimlib_open_wim()
1945  * rather than wimlib_create_new_wim().
1946  *
1947  * There are two ways that a WIM may be overwritten.  The first is to do a full
1948  * rebuild.  In this mode, the new WIM is written to a temporary file and then
1949  * renamed to the original file after it is has been completely written.  The
1950  * temporary file is made in the same directory as the original WIM file.  A
1951  * full rebuild may take a while, but can be used even if images have been
1952  * modified or deleted, will produce a WIM with no holes, and has little chance
1953  * of unintentional data loss because the temporary WIM is fsync()ed before
1954  * being renamed to the original WIM.
1955  *
1956  * The second way to overwrite a WIM is by appending to the end of it and
1957  * overwriting the header.  This can be much faster than a full rebuild, but it
1958  * only works if the only operations on the WIM have been to change the header
1959  * and/or XML data, or to add new images.  Writing a WIM in this mode begins
1960  * with writing any new file resources *after* everything in the old WIM, even
1961  * though this will leave a hole where the old lookup table, XML data, and
1962  * integrity were.  This is done so that the WIM remains valid even if the
1963  * operation is aborted mid-write.  The WIM header is only overwritten at the
1964  * very last moment, and up until that point the WIM will be seen as the old
1965  * version.
1966  *
1967  * By default, the overwrite mode is determine automatically based on the past
1968  * operations performed on the ::WIMStruct.  Use the flag
1969  * ::WIMLIB_WRITE_FLAG_REBUILD to explicitly request a full rebuild, and use the
1970  * ::WIMLIB_WRITE_FLAG_SOFT_DELETE to request the in-place overwrite even if
1971  * images have been deleted from the WIM.
1972  *
1973  * In the temporary-file overwrite mode, no changes are made to the WIM on
1974  * failure, and the temporary file is deleted if possible.  Abnormal termination
1975  * of the program will result in the temporary file being orphaned.  In the
1976  * direct append mode, the WIM is truncated to the original length on failure;
1977  * and while abnormal termination of the program will result in extra data
1978  * appended to the original WIM, it should still be a valid WIM.
1979  *
1980  * @param wim
1981  *      Pointer to the ::WIMStruct for the WIM file to write.  There may have
1982  *      been in-memory changes made to it, which are then reflected in the
1983  *      output file.
1984  * @param write_flags
1985  *      Bitwise OR of the flags ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY,
1986  *      ::WIMLIB_WRITE_FLAG_REBUILD, ::WIMLIB_WRITE_FLAG_RECOMPRESS, and/or
1987  *      ::WIMLIB_WRITE_FLAG_SOFT_DELETE.
1988  * @param num_threads
1989  *      Number of threads to use for compression (see wimlib_write()).
1990  * @param progress_func
1991  *      If non-NULL, a function that will be called periodically with the
1992  *      progress of the current operation.
1993  *
1994  * @return 0 on success; nonzero on error.  This function may return any value
1995  * returned by wimlib_write() as well as the following error codes:
1996  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
1997  *      The WIM was going to be modifien in-place (with no temporary file), but
1998  *      an exclusive advisory lock on the on-disk WIM file could not be acquired
1999  *      because another thread or process has mounted an image from the WIM
2000  *      read-write or is currently modifying the WIM in-place.
2001  * @retval ::WIMLIB_ERR_NO_FILENAME
2002  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
2003  *      than a WIM read with wimlib_open_wim().
2004  * @retval ::WIMLIB_ERR_RENAME
2005  *      The temporary file that the WIM was written to could not be renamed to
2006  *      the original filename of @a wim.
2007  * @retval ::WIMLIB_ERR_REOPEN
2008  *      The WIM was overwritten successfully, but it could not be re-opened
2009  *      read-only.  Therefore, the resources in the WIM can no longer be
2010  *      accessed, so this limits the functions that can be called on @a wim
2011  *      before calling wimlib_free().
2012  */
2013 extern int
2014 wimlib_overwrite(WIMStruct *wim, int write_flags, unsigned num_threads,
2015                  wimlib_progress_func_t progress_func);
2016
2017 /**
2018  * Prints information about one image, or all images, contained in a WIM.
2019  *
2020  * @param wim
2021  *      Pointer to the ::WIMStruct for a WIM file.
2022  * @param image
2023  *      The image about which to print information.  Can be the number of an
2024  *      image, or ::WIMLIB_ALL_IMAGES to print information about all images in the
2025  *      WIM.
2026  *
2027  * @return This function has no return value.  No error checking is done when
2028  * printing the information.  If @a image is invalid, an error message is
2029  * printed.
2030  */
2031 extern void
2032 wimlib_print_available_images(const WIMStruct *wim, int image);
2033
2034 /**
2035  * Prints the full paths to all files contained in an image, or all images, in a
2036  * WIM file.
2037  *
2038  * @param wim
2039  *      Pointer to the ::WIMStruct for a WIM file.
2040  * @param image
2041  *      Which image to print files for.  Can be the number of an image, or
2042  *      ::WIMLIB_ALL_IMAGES to print the files contained in all images.
2043  *
2044  * @return 0 on success; nonzero on error.
2045  * @retval ::WIMLIB_ERR_DECOMPRESSION
2046  *      The metadata resource for one of the specified images could not be
2047  *      decompressed.
2048  * @retval ::WIMLIB_ERR_INVALID_DENTRY
2049  *      A directory entry in the metadata resource for one of the specified
2050  *      images is invaled.
2051  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2052  *      @a image does not specify a valid image in @a wim, and is not
2053  *      ::WIMLIB_ALL_IMAGES.
2054  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
2055  *      The metadata resource for one of the specified images is invalid.
2056  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
2057  *      The security data for one of the specified images is invalid.
2058  * @retval ::WIMLIB_ERR_NOMEM
2059  *      Failed to allocate needed memory.
2060  * @retval ::WIMLIB_ERR_READ
2061  *      An unexpected read error or end-of-file occurred when reading the
2062  *      metadata resource for one of the specified images.
2063  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2064  *      @a wim was not a standalone WIM and was not the first part of a split
2065  *      WIM.
2066  */
2067 extern int
2068 wimlib_print_files(WIMStruct *wim, int image);
2069
2070 /**
2071  * Prints detailed information from the header of a WIM file.
2072  *
2073  * @param wim
2074  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
2075  *      standalone WIM or part of a split WIM.
2076  *
2077  * @return This function has no return value.
2078  *
2079  */
2080 extern void
2081 wimlib_print_header(const WIMStruct *wim);
2082
2083 /**
2084  * Prints the lookup table of a WIM file.  The lookup table maps SHA1 message
2085  * digests, as found in the directory entry tree in the WIM file, to file
2086  * resources in the WIM file.  This table includes one entry for each unique
2087  * file in the WIM, so it can be quite long.  There is only one lookup table per
2088  * WIM file, but each split WIM part has its own lookup table.
2089  *
2090  * @param wim
2091  *      Pointer to the ::WIMStruct for a WIM file.
2092  *
2093  * @return This function has no return value.
2094  */
2095 extern void
2096 wimlib_print_lookup_table(WIMStruct *wim);
2097
2098 /**
2099  * Prints the metadata of the specified image in a WIM file.  The metadata
2100  * consists of the security data as well as the directory entry tree.  Each
2101  * image has its own metadata.
2102  *
2103  * @param wim
2104  *      Pointer to the ::WIMStruct for a WIM file.
2105  * @param image
2106  *      Which image to print the metadata for.  Can be the number of an image,
2107  *      or ::WIMLIB_ALL_IMAGES to print the metadata for all images in the WIM.
2108  *
2109  * @return 0 on success; nonzero on error.
2110  * @retval ::WIMLIB_ERR_DECOMPRESSION
2111  *      The metadata resource for one of the specified images could not be
2112  *      decompressed.
2113  * @retval ::WIMLIB_ERR_INVALID_DENTRY
2114  *      A directory entry in the metadata resource for one of the specified
2115  *      images is invaled.
2116  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2117  *      @a image does not specify a valid image in @a wim, and is not
2118  *      ::WIMLIB_ALL_IMAGES.
2119  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
2120  *      The metadata resource for one of the specified images is invalid.
2121  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
2122  *      The security data for one of the specified images is invalid.
2123  * @retval ::WIMLIB_ERR_NOMEM
2124  *      Failed to allocate needed memory.
2125  * @retval ::WIMLIB_ERR_READ
2126  *      An unexpected read error or end-of-file occurred when reading the
2127  *      metadata resource for one of the specified images.
2128  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2129  *      @a wim was not a standalone WIM and was not the first part of a split
2130  *      WIM.
2131  */
2132 extern int
2133 wimlib_print_metadata(WIMStruct *wim, int image);
2134
2135 /**
2136  * Prints some basic information about a WIM file.  All information printed by
2137  * this function is also printed by wimlib_print_header(), but
2138  * wimlib_print_wim_information() prints some of this information more concisely
2139  * and in a more readable form.
2140  *
2141  * @param wim
2142  *      Pointer to the ::WIMStruct for a WIM file.
2143  *
2144  * @return This function has no return value.
2145  */
2146 extern void
2147 wimlib_print_wim_information(const WIMStruct *wim);
2148
2149 /**
2150  * Translates a string specifying the name or number of an image in the WIM into
2151  * the number of the image.  The images are numbered starting at 1.
2152  *
2153  * @param wim
2154  *      Pointer to the ::WIMStruct for a WIM file.
2155  * @param image_name_or_num
2156  *      A string specifying the name or number of an image in the WIM.  If it
2157  *      parses to a positive integer, this integer is taken to specify the
2158  *      number of the image, indexed starting at 1.  Otherwise, it is taken to
2159  *      be the name of an image, as given in the XML data for the WIM file.  It
2160  *      also may be the keyword "all" or the string "*", both of which will
2161  *      resolve to ::WIMLIB_ALL_IMAGES.
2162  *      <br/> <br/>
2163  *      There is no way to search for an image actually named "all", "*", or an
2164  *      integer number, or an image that has no name.  However, you can use
2165  *      wimlib_get_image_name() to get the name of any image.
2166  *
2167  * @return
2168  *      If the string resolved to a single existing image, the number of that
2169  *      image, indexed starting at 1, is returned.  If the keyword "all" or "*"
2170  *      was specified, ::WIMLIB_ALL_IMAGES is returned.  Otherwise,
2171  *      ::WIMLIB_NO_IMAGE is returned.  If @a image_name_or_num was @c NULL or
2172  *      the empty string, ::WIMLIB_NO_IMAGE is returned, even if one or more
2173  *      images in @a wim has no name.
2174  */
2175 extern int
2176 wimlib_resolve_image(WIMStruct *wim,
2177                      const wimlib_tchar *image_name_or_num);
2178
2179 /**
2180  * Sets which image in the WIM is marked as bootable.
2181  *
2182  * @param wim
2183  *      Pointer to the ::WIMStruct for a WIM file.
2184  * @param boot_idx
2185  *      The number of the image to mark as bootable, or 0 to mark no image as
2186  *      bootable.
2187  * @return 0 on success; nonzero on error.
2188  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2189  *      @a boot_idx does not specify an existing image in @a wim, and it was not
2190  *      0.
2191  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2192  *      @a wim is part of a split WIM.  We do not support changing the boot
2193  *      index of a split WIM.
2194  */
2195 extern int
2196 wimlib_set_boot_idx(WIMStruct *wim, int boot_idx);
2197
2198 /**
2199  * Changes the description of an image in the WIM.
2200  *
2201  * @param wim
2202  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
2203  *      standalone WIM or part of a split WIM; however, you should set the same
2204  *      description on all parts of a split WIM.
2205  * @param image
2206  *      The number of the image for which to change the description.
2207  * @param description
2208  *      The new description to give the image.  It may be @c NULL, which
2209  *      indicates that the image is to be given no description.
2210  *
2211  * @return 0 on success; nonzero on error.
2212  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2213  *      @a image does not specify a single existing image in @a wim.
2214  * @retval ::WIMLIB_ERR_NOMEM
2215  *      Failed to allocate the memory needed to duplicate the @a description
2216  *      string.
2217  */
2218 extern int
2219 wimlib_set_image_descripton(WIMStruct *wim, int image,
2220                             const wimlib_tchar *description);
2221
2222 /**
2223  * Changes what is written in the \<FLAGS\> element in the WIM XML data
2224  * (something like "Core" or "Ultimate")
2225  *
2226  * @param wim
2227  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
2228  *      standalone WIM or part of a split WIM; however, you should set the same
2229  *      \<FLAGS\> element on all parts of a split WIM.
2230  * @param image
2231  *      The number of the image for which to change the description.
2232  * @param flags
2233  *      The new \<FLAGS\> element to give the image.  It may be @c NULL, which
2234  *      indicates that the image is to be given no \<FLAGS\> element.
2235  *
2236  * @return 0 on success; nonzero on error.
2237  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2238  *      @a image does not specify a single existing image in @a wim.
2239  * @retval ::WIMLIB_ERR_NOMEM
2240  *      Failed to allocate the memory needed to duplicate the @a flags string.
2241  */
2242 extern int wimlib_set_image_flags(WIMStruct *wim, int image,
2243                                   const wimlib_tchar *flags);
2244
2245 /**
2246  * Changes the name of an image in the WIM.
2247  *
2248  * @param wim
2249  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
2250  *      standalone WIM or part of a split WIM; however, you should set the same
2251  *      name on all parts of a split WIM.
2252  * @param image
2253  *      The number of the image for which to change the name.
2254  * @param name
2255  *      The new name to give the image.  It must be a nonempty string.
2256  *
2257  * @return 0 on success; nonzero on error.
2258  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
2259  *      There is already an image named @a name in @a wim.
2260  * @retval ::WIMLIB_ERR_INVALID_PARAM
2261  *      @a name was @c NULL or the empty string.
2262  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2263  *      @a image does not specify a single existing image in @a wim.
2264  * @retval ::WIMLIB_ERR_NOMEM
2265  *      Failed to allocate the memory needed to duplicate the @a name string.
2266  */
2267 extern int wimlib_set_image_name(WIMStruct *wim, int image,
2268                                  const wimlib_tchar *name);
2269
2270 /**
2271  * Set the functions that wimlib uses to allocate and free memory.
2272  *
2273  * These settings are global and not per-WIM.
2274  *
2275  * The default is to use the default @c malloc() and @c free() from the C
2276  * library.
2277  *
2278  * Please note that some external functions, such as those in @c libntfs-3g, may
2279  * use the standard memory allocation functions.
2280  *
2281  * @param malloc_func
2282  *      A function equivalent to @c malloc() that wimlib will use to allocate
2283  *      memory.  If @c NULL, the allocator function is set back to the default
2284  *      @c malloc() from the C library.
2285  * @param free_func
2286  *      A function equivalent to @c free() that wimlib will use to free memory.
2287  *      If @c NULL, the free function is set back to the default @c free() from
2288  *      the C library.
2289  * @param realloc_func
2290  *      A function equivalent to @c realloc() that wimlib will use to reallocate
2291  *      memory.  If @c NULL, the free function is set back to the default @c
2292  *      realloc() from the C library.
2293  * @return 0 on success; nonzero on error.
2294  * @retval ::WIMLIB_ERR_UNSUPPORTED
2295  *      wimlib was compiled with the @c --without-custom-memory-allocator flag,
2296  *      so custom memory allocators are unsupported.
2297  */
2298 extern int
2299 wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
2300                             void (*free_func)(void *),
2301                             void *(*realloc_func)(void *, size_t));
2302
2303 /**
2304  * Sets whether wimlib is to print error messages to @c stderr when a function
2305  * fails.  These error messages may provide information that cannot be
2306  * determined only from the error code that is returned.  Not every error will
2307  * result in an error message being printed.
2308  *
2309  * This setting is global and not per-WIM.
2310  *
2311  * By default, error messages are not printed.
2312  *
2313  * @param show_messages
2314  *      @c true if error messages are to be printed; @c false if error messages
2315  *      are not to be printed.
2316  *
2317  * @return 0 on success; nonzero on error.
2318  * @retval ::WIMLIB_ERR_UNSUPPORTED
2319  *      @a show_messages was @c true, but wimlib was compiled with the @c
2320  *      --without-error-messages option.   Therefore, error messages cannot be
2321  *      shown.
2322  */
2323 extern int
2324 wimlib_set_print_errors(bool show_messages);
2325
2326 /**
2327  * Splits a WIM into multiple parts.
2328  *
2329  * @param wim
2330  *      The ::WIMStruct for the WIM to split.  It must be a standalone, one-part
2331  *      WIM.
2332  * @param swm_name
2333  *      Name of the SWM file to create.  This will be the name of the first
2334  *      part.  The other parts will have the same name with 2, 3, 4, ..., etc.
2335  *      appended before the suffix.
2336  * @param part_size
2337  *      The maximum size per part, in bytes.  It is not guaranteed that this
2338  *      will really be the maximum size per part, because some file resources in
2339  *      the WIM may be larger than this size, and the WIM file format provides
2340  *      no way to split up file resources among multiple WIMs.
2341  * @param write_flags
2342  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY if integrity tables are to be
2343  *      included in the split WIM parts.
2344  * @param progress_func
2345  *      If non-NULL, a function that will be called periodically with the
2346  *      progress of the current operation.
2347  *
2348  * @return 0 on success; nonzero on error.  This function may return any value
2349  * returned by wimlib_write() as well as the following error codes:
2350  *
2351  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2352  *      @a wim is not part 1 of a stand-alone WIM.
2353  * @retval ::WIMLIB_ERR_INVALID_PARAM
2354  *      @a swm_name was @c NULL, or @a part_size was 0.
2355  *
2356  * Note: the WIM's uncompressed and compressed resources are not checksummed
2357  * when they are copied from the joined WIM to the split WIM parts, nor are
2358  * compressed resources re-compressed.
2359  */
2360 extern int
2361 wimlib_split(WIMStruct *wim,
2362              const wimlib_tchar *swm_name,
2363              size_t part_size,
2364              int write_flags,
2365              wimlib_progress_func_t progress_func);
2366
2367 /**
2368  * Unmounts a WIM image that was mounted using wimlib_mount_image().
2369  *
2370  * The image to unmount is specified by the path to the mountpoint, not the
2371  * original ::WIMStruct passed to wimlib_mount_image(), which should not be
2372  * touched and also may have been allocated in a different process.
2373  *
2374  * To unmount the image, the thread calling this function communicates with the
2375  * thread that is managing the mounted WIM image.  This function blocks until it
2376  * is known whether the unmount succeeded or failed.  In the case of a
2377  * read-write mounted WIM, the unmount is not considered to have succeeded until
2378  * all changes have been saved to the underlying WIM file.
2379  *
2380  * @param dir
2381  *      The directory that the WIM image was mounted on.
2382  * @param unmount_flags
2383  *      Bitwise OR of the flags ::WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY,
2384  *      ::WIMLIB_UNMOUNT_FLAG_COMMIT, ::WIMLIB_UNMOUNT_FLAG_REBUILD, and/or
2385  *      ::WIMLIB_UNMOUNT_FLAG_RECOMPRESS.  None of these flags affect read-only
2386  *      mounts.
2387  * @param progress_func
2388  *      If non-NULL, a function that will be called periodically with the
2389  *      progress of the current operation.
2390  *
2391  * @return 0 on success; nonzero on error.
2392  *
2393  * @retval ::WIMLIB_ERR_DELETE_STAGING_DIR
2394  *      The filesystem daemon was unable to remove the staging directory and the
2395  *      temporary files that it contains.
2396  * @retval ::WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED
2397  *      The filesystem daemon appears to have terminated before sending an exit
2398  *      status.
2399  * @retval ::WIMLIB_ERR_FORK
2400  *      Could not @c fork() the process.
2401  * @retval ::WIMLIB_ERR_FUSERMOUNT
2402  *      The @b fusermount program could not be executed or exited with a failure
2403  *      status.
2404  * @retval ::WIMLIB_ERR_MQUEUE
2405  *      Could not open a POSIX message queue to communicate with the filesystem
2406  *      daemon servicing the mounted filesystem, could not send a message
2407  *      through the queue, or could not receive a message through the queue.
2408  * @retval ::WIMLIB_ERR_NOMEM
2409  *      Failed to allocate needed memory.
2410  * @retval ::WIMLIB_ERR_OPEN
2411  *      The filesystem daemon could not open a temporary file for writing the
2412  *      new WIM.
2413  * @retval ::WIMLIB_ERR_READ
2414  *      A read error occurred when the filesystem daemon tried to a file from
2415  *      the staging directory
2416  * @retval ::WIMLIB_ERR_RENAME
2417  *      The filesystem daemon failed to rename the newly written WIM file to the
2418  *      original WIM file.
2419  * @retval ::WIMLIB_ERR_WRITE
2420  *      A write error occurred when the filesystem daemon was writing to the new
2421  *      WIM file, or the filesystem daemon was unable to flush changes that had
2422  *      been made to files in the staging directory.
2423  */
2424 extern int
2425 wimlib_unmount_image(const wimlib_tchar *dir,
2426                      int unmount_flags,
2427                      wimlib_progress_func_t progress_func);
2428
2429 /**
2430  * Writes a standalone WIM to a file.
2431  *
2432  * This brings in resources from any external locations, such as directory trees
2433  * or NTFS volumes scanned with wimlib_add_image(), or other WIM files via
2434  * wimlib_export_image(), and incorporates them into a new on-disk WIM file.
2435  *
2436  * @param wim
2437  *      Pointer to the ::WIMStruct for a WIM.  There may have been in-memory
2438  *      changes made to it, which are then reflected in the output file.
2439  * @param path
2440  *      The path to the file to write the WIM to.
2441  * @param image
2442  *      The image inside the WIM to write.  Use ::WIMLIB_ALL_IMAGES to include all
2443  *      images.
2444  * @param write_flags
2445  *      Bitwise OR of the flags ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY,
2446  *      ::WIMLIB_WRITE_FLAG_RECOMPRESS, ::WIMLIB_WRITE_FLAG_FSYNC, and/or
2447  *      ::WIMLIB_WRITE_FLAG_SOFT_DELETE.
2448  * @param num_threads
2449  *      Number of threads to use for compressing data.  If 0, the number of
2450  *      threads is taken to be the number of online processors.  Note: if no
2451  *      data compression needs to be done, no additional threads will be created
2452  *      regardless of this parameter (e.g. if writing an uncompressed WIM, or
2453  *      exporting an image from a compressed WIM to another WIM of the same
2454  *      compression type without ::WIMLIB_WRITE_FLAG_RECOMPRESS specified in @a
2455  *      write_flags).
2456  * @param progress_func
2457  *      If non-NULL, a function that will be called periodically with the
2458  *      progress of the current operation.
2459  *
2460  * @return 0 on success; nonzero on error.
2461  * @retval ::WIMLIB_ERR_DECOMPRESSION
2462  *      Failed to decompress a metadata or file resource in @a wim.
2463  * @retval ::WIMLIB_ERR_INVALID_DENTRY
2464  *      A directory entry in the metadata resource for @a image in @a wim is
2465  *      invalid.
2466  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2467  *      @a image does not specify a single existing image in @a wim, and is not
2468  *      ::WIMLIB_ALL_IMAGES.
2469  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
2470  *      A file that had previously been scanned for inclusion in the WIM by
2471  *      wimlib_add_image() was concurrently modified, so it failed the SHA1
2472  *      message digest check.
2473  * @retval ::WIMLIB_ERR_INVALID_PARAM
2474  *      @a path was @c NULL.
2475  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
2476  *      The metadata resource for @a image in @a wim is invalid.
2477  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
2478  *      The security data for @a image in @a wim is invalid.
2479  * @retval ::WIMLIB_ERR_NOMEM
2480  *      Failed to allocate needed memory.
2481  * @retval ::WIMLIB_ERR_OPEN
2482  *      Failed to open @a path for writing, or some file resources in @a
2483  *      wim refer to files in the outside filesystem, and one of these files
2484  *      could not be opened for reading.
2485  * @retval ::WIMLIB_ERR_READ
2486  *      An error occurred when trying to read data from the WIM file associated
2487  *      with @a wim, or some file resources in @a wim refer to files in the
2488  *      outside filesystem, and a read error occurred when reading one of these
2489  *      files.
2490  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2491  *      @a wim is part of a split WIM.  You may not call this function on a
2492  *      split WIM.
2493  * @retval ::WIMLIB_ERR_WRITE
2494  *      An error occurred when trying to write data to the new WIM file at @a
2495  *      path.
2496  */
2497 extern int
2498 wimlib_write(WIMStruct *wim,
2499              const wimlib_tchar *path,
2500              int image,
2501              int write_flags,
2502              unsigned num_threads,
2503              wimlib_progress_func_t progress_func);
2504
2505 /**
2506  * This function is equivalent to wimlib_lzx_compress(), but instead compresses
2507  * the data using "XPRESS" compression.
2508  */
2509 extern unsigned
2510 wimlib_xpress_compress(const void *chunk, unsigned chunk_size, void *out);
2511
2512 /**
2513  * This function is equivalent to wimlib_lzx_decompress(), but instead assumes
2514  * the data is compressed using "XPRESS" compression.
2515  */
2516 extern int
2517 wimlib_xpress_decompress(const void *compressed_data, unsigned compressed_len,
2518                          void *uncompressed_data, unsigned uncompressed_len);
2519
2520 #endif /* _WIMLIB_H */