aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/windows.zig
AgeCommit message (Expand)Author
2021-01-12define nfds_t for windowsBill Nagel
2021-01-11std.os.windows.GetFinalPathNameByHandle: remove intermediate buffersRohlem
2021-01-11std.os.windows.GetFinalPathNameByHandle: remove QueryInformationFile code pathRohlem
2021-01-11std.os.windows.GetFinalPathNameByHandle: address non-structural review commentsRohlem
2021-01-11std.os.windows.GetFinalPathNameByHandle: replace kernel32 by ntdll callRohlem
2021-01-11introduce std.os.windows.QueryObjectNameRohlem
2021-01-11std.os.windows.GetFinalPathNameByHandle: add testRohlem
2021-01-11std.os.windows.GetFinalPathNameByHandle: reintroduce kernel32 for compatibilityRohlem
2021-01-11Merge pull request #7134 from alexnask/fix_std_fs_watchAndrew Kelley
2021-01-02std: Use {s} instead of {} when printing stringsLemonBoy
2020-12-31Year++Frank Denis
2020-12-17Only check for evented mode in windows.OpenFile when in async modeAlexandros Naskos
2020-12-14Implement std.fs.Watch on WindowsAlexandros Naskos
2020-12-09MoveFileEx can return ACCESS_DENIEDAndrew Kelley
2020-12-09small fixes and zig fmtVexu
2020-11-18Move utf8->utf16 up one level into os.zigLee Cannon
2020-11-18Switch to RtlSetCurrentDirectory_ULee Cannon
2020-11-18Implement chdir and chdirZ for WindowsLee Cannon
2020-11-16std: Make windows.ReadFile allow short readsLemonBoy
2020-10-22Merge branch 'improve-windows-networking'Andrew Kelley
2020-09-30Merge pull request #6250 from ziglang/stage2-zig-ccAndrew Kelley
2020-09-29Windows: Handle ACCESS_DENIED in DeviceIoControlRyan Liptak
2020-09-29Merge remote-tracking branch 'origin/master' into stage2-zig-ccAndrew Kelley
2020-09-29Revert "Fix for Windows: std.os.windows.DeleteFile()"Jakub Konka
2020-09-29Merge remote-tracking branch 'origin/master' into stage2-zig-ccAndrew Kelley
2020-09-25Add clarification commentSuirad
2020-09-25Stdlib fix for os.windows.deleteFile to fail withSuirad
2020-09-21Merge remote-tracking branch 'origin/master' into stage2-zig-ccAndrew Kelley
2020-09-17Add rename to std.fs APIRyan Liptak
2020-09-15std: handle sharing violation when deleting a file on windowsAndrew Kelley
2020-09-10implement poll for windows with WSAPoll (only available on vista and higher)Bas van den Berg
2020-09-08change socklen_t to u32 and add appropriate casts when calling WSABas van den Berg
2020-09-03os.send(to) and os.recv(from) functions made to work on windows.Bas van den Berg
2020-09-02Made some changes and additions to the networking to make it work on windows.Bas van den Berg
2020-08-30handle lack of privilege to create symbolic links on windowsSahnvour
2020-08-20add license header to all std lib filesAndrew Kelley
2020-08-19windows: match the same error code for EBADFAndrew Kelley
2020-08-19Add handler for INVALID_HANDLE to prevent infinite loop when stderr is not av...StrangeBug
2020-08-10Convert prefix from u8 to u16 programmaticallyJakub Konka
2020-08-10Validate DOS path before returningJakub Konka
2020-08-09Address some review commentsJakub Konka
2020-08-07Fix alignment issueJakub Konka
2020-08-07Redo GetFinalPathNameByHandle using DeviceIoControlJakub Konka
2020-08-06Add docsJakub Konka
2020-08-06Use NtQueryInformationFile unless unavailableJakub Konka
2020-08-06Initial draft of GetFinalPathNameByHandleJakub Konka
2020-08-04zig fmtAndrew Kelley
2020-07-31Add prelim `openW` and `openatW`Jakub Konka
2020-07-31Use NtCreateFile directly in ReadLinkJakub Konka
2020-07-31Move delete file logic into windows.DeleteFile fnJakub Konka