pub const WindowsPathSpace = struct
pub const WindowsPathSpace = struct { data: [windows.PATH_MAX_WIDE:0]u16, len: usize, pub fn span(wps: *const WindowsPathSpace) [:0]const u16 { return wps.data[0..wps.len :0]; } pub fn string(wps: *const WindowsPathSpace) windows.UNICODE_STRING { return .init(wps.span()); } }