]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lzx_common.h
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / include / wimlib / lzx_common.h
index 0b57530d7a49a2d21b24af4a1bafc6af0302d5fb..80d53813388c57e8f7a9e730b6d1090a6a36f655 100644 (file)
 #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];
 
-extern unsigned
+unsigned
 lzx_get_window_order(size_t max_bufsize);
 
-extern unsigned
+unsigned
 lzx_get_num_main_syms(unsigned window_order);
 
-extern void
+void
 lzx_preprocess(u8 *data, u32 size);
 
-extern void
+void
 lzx_postprocess(u8 *data, u32 size);
 
 #endif /* _LZX_COMMON_H */