]> wimlib.net Git - wimlib/blobdiff - src/wimlib.h
Update version number to 1.3.1
[wimlib] / src / wimlib.h
index 16f3ecb4d2476915a4e0b3c3f725b56b5150f165..18417d19baf1041c3781ca0e14bf3117b4f1ea45 100644 (file)
@@ -31,7 +31,7 @@
  *
  * \section intro Introduction
  *
- * This is the documentation for the library interface of wimlib 1.3.0.  If you
+ * This is the documentation for the library interface of wimlib 1.3.1.  If you
  * have installed wimlib and want to know how to use the @b wimlib-imagex
  * program, please see the man pages instead.  Also: the actual project page
  * where you can download the source code for the library is at <a
 #define WIMLIB_MINOR_VERSION 3
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
-#define WIMLIB_PATCH_VERSION 0
+#define WIMLIB_PATCH_VERSION 1
 
 /**
  * Opaque structure that represents a WIM file.  This is an in-memory structure
@@ -633,6 +633,10 @@ struct wimlib_capture_source {
  * This flag cannot be combined with ::WIMLIB_ADD_IMAGE_FLAG_NTFS.  */
 #define WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA                        0x00000010
 
+/** Do not capture security descriptors.  Only has an effect in NTFS capture
+ * mode, or in Win32 native builds. */
+#define WIMLIB_ADD_IMAGE_FLAG_NO_ACLS                  0x00000020
+
 /******************************
  * WIMLIB_EXPORT_FLAG_* *
  ******************************/
@@ -669,6 +673,10 @@ struct wimlib_capture_source {
  * Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
 #define WIMLIB_EXTRACT_FLAG_UNIX_DATA                  0x00000020
 
+/** Do not extract security descriptors.  Only has an effect in NTFS apply mode,
+ * or in Win32 native builds. */
+#define WIMLIB_EXTRACT_FLAG_NOACLS                     0x00000040
+
 /******************************
  * WIMLIB_MOUNT_FLAG_*        *
  ******************************/