From 597c990e7b8d638afd9f75c26034fc3a7f0cef71 Mon Sep 17 00:00:00 2001 From: Jonathan Marler Date: Mon, 20 Jul 2026 18:43:32 -0600 Subject: [PATCH] remove FALSE/TRUE from zig.zig, added back to foundation at some point --- src/static/win32/zig.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/static/win32/zig.zig b/src/static/win32/zig.zig index 774d3d6..58699a9 100644 --- a/src/static/win32/zig.zig +++ b/src/static/win32/zig.zig @@ -173,11 +173,6 @@ pub const COLORREF = packed struct(u32) { pub const gray: COLORREF = .rgb(128, 128, 128); }; -// These constants were removed from the metadata to allow each projection -// to define them however they like (see https://github.com/microsoft/win32metadata/issues/530) -pub const FALSE: win32.BOOL = 0; -pub const TRUE: win32.BOOL = 1; - /// Returns a formatter that will print the given error code using FormatMessage, i.e. /// /// "The system cannot find the file specified."