1
2
3
4
5
6
7
8
//! # keypropdecode
//! This crate gives you a handy struct to manage Windows file system elements properties.  
//! The different constants are defined in [Microsoft File Attributes Constants Documentation](https://learn.microsoft.com/en-us/windows/win32/fileio/file-attribute-constants).

/// The Error type for the crate
pub mod error;
mod props;
pub use props::Props;