aboutsummaryrefslogtreecommitdiff
path: root/lib/std/start.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-10-27 23:39:06 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-10-28 13:16:47 -0400
commitd817a3c5173a4f9e41c5872e58733287c9686018 (patch)
tree3a5f260b2198728c43c4833058e4802487266d19 /lib/std/start.zig
parente69fd4d696b7e24c66a50adb3bf3fe011ee1a626 (diff)
downloadzig-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.zig2
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);