]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lzx_common.h
Add program to report NTFS volume fragmentation
[wimlib] / include / wimlib / lzx_common.h
index 92e0b75b255c2bc2d55787d9f83102bf08eec97e..f93221d5b16c84b075b4e865bf3d7b1b63805274 100644 (file)
@@ -10,7 +10,7 @@
 #include "wimlib/lzx_constants.h"
 #include "wimlib/types.h"
 
-extern const u32 lzx_offset_slot_base[LZX_MAX_OFFSET_SLOTS + 1];
+extern const s32 lzx_offset_slot_base[LZX_MAX_OFFSET_SLOTS + 1];
 
 extern const u8 lzx_extra_offset_bits[LZX_MAX_OFFSET_SLOTS];
 
@@ -21,9 +21,9 @@ extern unsigned
 lzx_get_num_main_syms(unsigned window_order);
 
 extern void
-lzx_do_e8_preprocessing(u8 *data, u32 size);
+lzx_preprocess(u8 *data, u32 size);
 
 extern void
-lzx_undo_e8_preprocessing(u8 *data, u32 size);
+lzx_postprocess(u8 *data, u32 size);
 
 #endif /* _LZX_COMMON_H */