diff --git a/bzlib.rs b/bzlib.rs index e98628756..1b3937fb7 100644 --- a/bzlib.rs +++ b/bzlib.rs @@ -460,6 +460,19 @@ impl DSlice { } } +/// 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)]