1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//!  Decoding of ICO files
//!
//!  A decoder for ICO (Windows Icon) image container files
//!
//!  # Related Links
//!  * https://msdn.microsoft.com/en-us/library/ms997538.aspx
//!  * https://en.wikipedia.org/wiki/ICO_%28file_format%29

pub use self::decoder::ICODecoder;

mod decoder;