Function readlinkAbsoluteW [src]
Windows-only. Same as readlinkW, except the path parameter is null-terminated, WTF16
encoded.
Prototype
pub fn readlinkAbsoluteW(pathname_w: [*:0]const u16, buffer: *[max_path_bytes]u8) ![]u8 Parameters
pathname_w: [*:0]const u16buffer: *[max_path_bytes]u8 Source
pub fn readlinkAbsoluteW(pathname_w: [*:0]const u16, buffer: *[max_path_bytes]u8) ![]u8 {
assert(path.isAbsoluteWindowsW(pathname_w));
return posix.readlinkW(mem.span(pathname_w), buffer);
}