Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compile error due to GetModuleFileNameW binding change
In #19641, this binding changed from `[*]u16` to `LPWSTR` which made it a sentinel-terminated pointer. This introduced a compiler error in the `std.os.windows.GetModuleFileNameW` wrapper since it takes a `[*]u16` pointer. This commit changes the binding back to what it was before instead of introducing a breaking change to `std.os.windows.GetModuleFileNameW` Related: #20858
- Loading branch information