]> wimlib.net Git - wimlib/blobdiff - include/wimlib/chunk_compressor.h
Header fixes
[wimlib] / include / wimlib / chunk_compressor.h
index 4684a61c14e81edda01293ad00a2ef4c94654200..f21a0c6a7bd9fcf5d7e755a94223291cd4db3557 100644 (file)
@@ -7,7 +7,7 @@
 #ifndef _WIMLIB_CHUNK_COMPRESSOR_H
 #define _WIMLIB_CHUNK_COMPRESSOR_H
 
-#include <wimlib/types.h>
+#include "wimlib/types.h"
 
 /* Interface for chunk compression.  Users can submit chunks of data to be
  * compressed, then retrieve them later in order.  This interface can be
@@ -32,7 +32,7 @@ struct chunk_compressor {
         * %false if the chunk compressor does not have space for the chunk at
         * the present time.  In the latter case, get_chunk() must be called to
         * retrieve a compressed chunk before trying again.  */
-       bool (*submit_chunk)(struct chunk_compressor *, const void *, size_t);
+       bool (*submit_chunk)(struct chunk_compressor *, const void *, u32);
 
        /* Get the next chunk of compressed data.
         *
@@ -53,7 +53,7 @@ struct chunk_compressor {
         * successfully retrieved, or %false if there are no chunks currently
         * being compressed.  */
        bool (*get_chunk)(struct chunk_compressor *,
-                         const void **, unsigned *, unsigned *);
+                         const void **, u32 *, u32 *);
 };