We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The _T function found in /src/zig.zig#L17 gives back the following error when you use it when running the program in ansi mode:
.\win32\win32\zig.zig:17:75: error: expected type '*const [4:0]u8', found '[]const u8'
Ran into this when I was playing around trying to see if I could build my program run on Windows 2000(Found out it doesn't).
The text was updated successfully, but these errors were encountered:
How did you enable ansi mode? I believe I hardcoded it to wide because of a compiler bug. Did you just modify the mode in the source code?
ansi
wide
Sorry, something went wrong.
I did change the source code yes, I enabled ansi mode by changing the following line in /src/zig.zig#L9 from:
pub const unicode_mode = UnicodeMode.wide;
to:
pub const unicode_mode = UnicodeMode.ansi;
No branches or pull requests
The _T function found in /src/zig.zig#L17 gives back the following error when you use it when running the program in ansi mode:
Ran into this when I was playing around trying to see if I could build my program run on Windows 2000(Found out it doesn't).
The text was updated successfully, but these errors were encountered: