authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-09-05 18:39:38+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-09-05 19:32:59+02:00
log311c9699cb5e7fb81d9d7e74f1d7f40a8da0079b
treea3e641d94b198a3ac5dde84fc7476f567dfe8f74
parent9cf3a2b7f8dbb439b31c579000aa780e9fa6b2d5
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.zig.system.windows: remove some goofy pub consts


1 files changed, 4 insertions(+), 5 deletions(-)

lib/std/zig/system/windows.zig+4-5
...@@ -3,11 +3,10 @@ const builtin = @import("builtin");...@@ -3,11 +3,10 @@ const builtin = @import("builtin");
3const assert = std.debug.assert;3const assert = std.debug.assert;
4const mem = std.mem;4const mem = std.mem;
5const Target = std.Target;5const Target = std.Target;
66const WindowsVersion = std.Target.Os.WindowsVersion;
7pub const WindowsVersion = std.Target.Os.WindowsVersion;7const PF = std.os.windows.PF;
8pub const PF = std.os.windows.PF;8const REG = std.os.windows.REG;
9pub const REG = std.os.windows.REG;9const IsProcessorFeaturePresent = std.os.windows.IsProcessorFeaturePresent;
10pub const IsProcessorFeaturePresent = std.os.windows.IsProcessorFeaturePresent;
1110
12/// Returns the highest known WindowsVersion deduced from reported runtime information.11/// Returns the highest known WindowsVersion deduced from reported runtime information.
13/// Discards information about in-between versions we don't differentiate.12/// Discards information about in-between versions we don't differentiate.