]> wimlib.net Git - wimlib/blobdiff - src/wimlib.h
wimlib_add_image(): Fewer parameters
[wimlib] / src / wimlib.h
index 6d9eef48dc42a824d08470d605b381fad82a6eae..a0b08c07459f948853e257553837261a36db3431 100644 (file)
@@ -305,6 +305,7 @@ enum wimlib_error_code {
        WIMLIB_ERR_IMAGE_COUNT,
        WIMLIB_ERR_IMAGE_NAME_COLLISION,
        WIMLIB_ERR_INTEGRITY,
+       WIMLIB_ERR_INVALID_CAPTURE_CONFIG,
        WIMLIB_ERR_INVALID_CHUNK_SIZE,
        WIMLIB_ERR_INVALID_COMPRESSION_TYPE,
        WIMLIB_ERR_INVALID_DENTRY,
@@ -404,13 +405,13 @@ enum wimlib_error_code {
  *
  */
 extern int wimlib_add_image(WIMStruct *wim, const char *dir, 
-                           const char *name, const char *description, 
-                           const char *flags_element, int flags);
+                           const char *name, const char *config,
+                           size_t config_len, int flags);
 
 extern int wimlib_add_image_from_ntfs_volume(WIMStruct *w, const char *device,
                                             const char *name,
-                                            const char *description,
-                                            const char *flags_element,
+                                            const char *config,
+                                            size_t config_len,
                                             int flags);
 
 extern int wimlib_apply_image_to_ntfs_volume(WIMStruct *w, int image,
@@ -1121,6 +1122,9 @@ extern int wimlib_set_boot_idx(WIMStruct *wim, int boot_idx);
 extern int wimlib_set_image_descripton(WIMStruct *wim, int image, 
                                       const char *description);
 
+extern int wimlib_set_image_flags(WIMStruct *w, int image,
+                                 const char *flags);
+
 /**
  * Changes the name of an image in the WIM.
  *