]> wimlib.net Git - wimlib/blobdiff - include/wimlib.h
configure.ac: Fix check for NTFS_MNT_RDONLY (again)
[wimlib] / include / wimlib.h
index 783182f767a23b4c24e08ce7b9d20d20003d7333..75fde577b1f68c936d536bd46c5f58ee3ac78846 100644 (file)
@@ -31,7 +31,7 @@
  *
  * \section intro Introduction
  *
- * This is the documentation for the library interface of wimlib 1.4.1, a C
+ * This is the documentation for the library interface of wimlib 1.4.2, a C
  * library for creating, modifying, extracting, and mounting files in the
  * Windows Imaging Format.  This documentation is intended for developers only.
  * If you have installed wimlib and want to know how to use the @b wimlib-imagex
 #define WIMLIB_MINOR_VERSION 4
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
-#define WIMLIB_PATCH_VERSION 1
+#define WIMLIB_PATCH_VERSION 2
 
 /**
  * Opaque structure that represents a WIM file.  This is an in-memory structure
@@ -837,7 +837,7 @@ struct wimlib_dir_entry {
        uint32_t num_named_streams;
 
        /** Roughly, the inode number of this file.  However, it may be 0 if
-        * num_links == 1.  */
+        * @a num_links == 1.  */
        uint64_t hard_link_group_id;
 
        /** Time this file was created.  */
@@ -852,9 +852,10 @@ struct wimlib_dir_entry {
 
        /** Array of streams that make up this file.  The first entry will
         * always exist and will correspond to the unnamed data stream (default
-        * file contents), so it will have stream_name == NULL.  There will then
-        * be num_named_streams additional entries that specify the named data
-        * streams, if any, each of which will have stream_name != NULL.  */
+        * file contents), so it will have @a stream_name == @c NULL.  There
+        * will then be @a num_named_streams additional entries that specify the
+        * named data streams, if any, each of which will have @a stream_name !=
+        * @c NULL.  */
        struct wimlib_stream_entry streams[];
 };