Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions lz4-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,10 @@ pub struct LZ4FDecompressOptions {
pub reserved: [c_uint; 3],
}

#[derive(Debug)]
#[repr(C)]
#[repr(transparent)]
pub struct LZ4StreamEncode(c_void);

#[derive(Debug)]
#[repr(C)]
#[repr(transparent)]
pub struct LZ4StreamDecode(c_void);

pub const LZ4F_VERSION: c_uint = 100;
Expand Down