diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-10-27 23:39:06 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-10-28 13:16:47 -0400 |
| commit | d817a3c5173a4f9e41c5872e58733287c9686018 (patch) | |
| tree | 3a5f260b2198728c43c4833058e4802487266d19 /lib/std/start.zig | |
| parent | e69fd4d696b7e24c66a50adb3bf3fe011ee1a626 (diff) | |
| download | zig-d817a3c5173a4f9e41c5872e58733287c9686018.tar.gz zig-d817a3c5173a4f9e41c5872e58733287c9686018.zip | |
delete std.os.windows.user32
This is progress towards #4426
Closes #17417
Diffstat (limited to 'lib/std/start.zig')
| -rw-r--r-- | lib/std/start.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/start.zig b/lib/std/start.zig index 63675c1074..4bb85f4eb9 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -609,7 +609,7 @@ pub fn call_wWinMain() std.os.windows.INT { // There's no (documented) way to get the nCmdShow parameter, so we're // using this fairly standard default. - const nCmdShow = std.os.windows.user32.SW_SHOW; + const nCmdShow = 5; // second parameter hPrevInstance, MSDN: "This parameter is always NULL" return root.wWinMain(hInstance, null, lpCmdLine, nCmdShow); |
