//! LSPK PAK file format reader/writer
//!
//! This is a replacement for the larian-formats crate's PAK handling,
//! with better error handling, progress callbacks, and error recovery.
//!
//!
// Reader/Writer exports
pub use LspkReader;
pub use LspkWriter;
// Public types that users need
pub use ;
// Internal constants
pub const MAGIC: = ;
pub const MIN_VERSION: u32 = 15;
pub const MAX_VERSION: u32 = 18;
pub const PATH_LENGTH: usize = 256;
pub const TABLE_ENTRY_SIZE: usize = 272;
// Internal header types (used by reader)
pub use ;