winstr 0.0.2

windows strings (BSTR only so far)
Documentation
#[cfg(doc)]
#[macro_export]
/// Create a &[BStr] literal at compile time
macro_rules! bstr {
    ( $string:literal ) => {
        $crate::winstr_macros::bstr_impl!(($crate) $string)
    };
}

#[cfg(not(doc))] // use wildcards for better error messages from proc macro
#[macro_export]
macro_rules! bstr {
    ( $($tt:tt)+ ) => {
        $crate::winstr_macros::bstr_impl!(($crate) $($tt)+)
    };
}

mod danger; pub use danger::*;
mod safer;
mod traits; pub use traits::*;