macro_rules! osb { ($bytes:literal) => { ... }; }
Creates an OsStr from a literal byte string (b"whatever").
OsStr
b"whatever"
This macro is unsafe because creating an OsStr from invalid UTF-8 is Undefined Behavior on Windows (but not Unix or Linux).