msr-driver-rs 1.0.0

Minimal Rust wrapper around Windows MSR drivers (Scaphandre or WinRing0)
1
2
3
pub(crate) fn to_utf16_z(s: &str) -> Vec<u16> {
    s.encode_utf16().chain(std::iter::once(0)).collect()
}