X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fxpress.h;h=c8bc57d8fe0a1afed43908e435c1a84ff563ae91;hb=82e0045e9a93baed16ca1fa1bbe5accfcf11cf6c;hp=d438c81ceac03a27836f7890f3b5d68b3111915c;hpb=40beb80283a2df7af88c8359ca41adb814585e9a;p=wimlib diff --git a/src/xpress.h b/src/xpress.h index d438c81c..c8bc57d8 100644 --- a/src/xpress.h +++ b/src/xpress.h @@ -25,10 +25,10 @@ #define XPRESS_MIN_MATCH 3 #define XPRESS_MAX_MATCH 65538 -extern int xpress_decompress(const void *__compressed_data, uint compressed_len, - void *__uncompressed_data, uint uncompressed_len); +extern int xpress_decompress(const void *__compressed_data, unsigned compressed_len, + void *__uncompressed_data, unsigned uncompressed_len); -extern int xpress_compress(const void *uncompressed_data, uint uncompressed_len, - void *compressed_data, uint *compressed_len_ret); +extern int xpress_compress(const void *uncompressed_data, unsigned uncompressed_len, + void *compressed_data, unsigned *compressed_len_ret); #endif /* _WIMLIB_XPRESS_H */