]> wimlib.net Git - wimlib/blobdiff - include/wimlib/integrity.h
Update progress functions
[wimlib] / include / wimlib / integrity.h
index aa541f6afde4ebdd456db5e07edff6e2afb73fb0..1d115ff8cc834a78ca9c57f09a76a878d5e2a608 100644 (file)
@@ -1,23 +1,19 @@
 #ifndef _WIMLIB_INTEGRITY_H
 #define _WIMLIB_INTEGRITY_H
 
-#include "wimlib.h"
+#include "wimlib/types.h"
 #include <sys/types.h>
 
 #define WIM_INTEGRITY_OK 0
 #define WIM_INTEGRITY_NOT_OK -1
 #define WIM_INTEGRITY_NONEXISTENT -2
 
-struct resource_entry;
-
 extern int
-write_integrity_table(int fd,
-                     struct resource_entry *integrity_res_entry,
+write_integrity_table(WIMStruct *wim,
                      off_t new_lookup_table_end,
-                     off_t old_lookup_table_end,
-                     wimlib_progress_func_t progress_func);
+                     off_t old_lookup_table_end);
 
 extern int
-check_wim_integrity(WIMStruct *wim, wimlib_progress_func_t progress_func);
+check_wim_integrity(WIMStruct *wim);
 
 #endif /* _WIMLIB_INTEGRITY_H */