Skip to content

Commit

Permalink
enum BZFILE: document
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Nov 8, 2024
1 parent 045a193 commit 76b9eed
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions bzlib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,19 @@ impl<T> DSlice<T> {
}
}

/// Abstract handle to a `.bz2` file.
///
/// This type is created by:
///
/// - [`BZ2_bzReadOpen`]
/// - [`BZ2_bzWriteOpen`]
/// - [`BZ2_bzopen`]
///
/// And destructed by:
///
/// - [`BZ2_bzReadClose`]
/// - [`BZ2_bzWriteClose`]
/// - [`BZ2_bzclose`]
pub enum BZFILE {}

#[allow(non_camel_case_types)]
Expand Down

0 comments on commit 76b9eed

Please sign in to comment.