]> wimlib.net Git - wimlib/blobdiff - examples/capturewim.c
Use more comprehensive public domain dedications
[wimlib] / examples / capturewim.c
index f2719705689bc91ffb5d760cba62748431e071e5..2d89e51f4b7744e90268f0b2701400240d050363 100644 (file)
@@ -1,5 +1,21 @@
 /*
  * capturewim.c - A program to capture a directory tree into a WIM file.
+ *
+ * The following copying information applies to this specific source code file:
+ *
+ * Written in 2014 by Eric Biggers <ebiggers3@gmail.com>
+ *
+ * To the extent possible under law, the author(s) have dedicated all copyright
+ * and related and neighboring rights to this software to the public domain
+ * worldwide via the Creative Commons Zero 1.0 Universal Public Domain
+ * Dedication (the "CC0").
+ *
+ * This software is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the CC0 for more details.
+ *
+ * You should have received a copy of the CC0 along with this software; if not
+ * see <http://creativecommons.org/publicdomain/zero/1.0/>.
  */
 
 #include <wimlib.h>
@@ -8,9 +24,9 @@
 #define TO_PERCENT(numerator, denominator) \
        ((float)(((denominator) == 0) ? 0 : ((numerator) * 100 / (float)(denominator))))
 
-static int
+static enum wimlib_progress_status
 write_progress(enum wimlib_progress_msg msg,
-              const union wimlib_progress_info *info)
+              union wimlib_progress_info *info, void *progctx)
 {
        switch (msg) {
        case WIMLIB_PROGRESS_MSG_WRITE_STREAMS:
@@ -21,7 +37,7 @@ write_progress(enum wimlib_progress_msg msg,
        default:
                break;
        }
-       return 0;
+       return WIMLIB_PROGRESS_STATUS_CONTINUE;
 }
 
 int main(int argc, char **argv)
@@ -45,14 +61,16 @@ int main(int argc, char **argv)
        if (ret != 0)  /* Always should check the error codes.  */
                goto out;
 
+       /* Register our progress function.  */
+       wimlib_register_progress_function(wim, write_progress, NULL);
+
        /* Add the directory tree to the WIMStruct as an image.  */
 
        ret = wimlib_add_image(wim,     /* WIMStruct to which to add the image    */
                               srcdir,  /* Directory from which to add the image  */
                               NULL,    /* Name to give the image (NULL means none)  */
                               NULL,    /* Capture configuration structure (NULL means none)  */
-                              0,       /* WIMLIB_ADD_FLAG_* flags (0 means all defaults)  */
-                              NULL);   /* Progress function (NULL means none) */
+                              0);      /* WIMLIB_ADD_FLAG_* flags (0 means all defaults)  */
        if (ret != 0)
                goto out;
 
@@ -62,8 +80,7 @@ int main(int argc, char **argv)
                           wimpath,  /* Path to write the WIM to             */
                           WIMLIB_ALL_IMAGES, /*  Image(s) in the WIM to write */
                           0,        /* WIMLIB_WRITE_FLAG_* flags (0 means all defaults)   */
-                          0,        /* Number of compressor threads (0 means default)  */
-                          write_progress); /* Progress function  */
+                          0);       /* Number of compressor threads (0 means default)  */
 
 out:
        /* Free the WIMStruct.  Has no effect if the pointer to it is NULL.  */