| 1 | const std = @import("std"); |
| 2 | |
| 3 | pub fn wWinMain( |
| 4 | inst: std.os.windows.HINSTANCE, |
| 5 | prev: ?std.os.windows.HINSTANCE, |
| 6 | cmd_line: std.os.windows.LPWSTR, |
| 7 | cmd_show: c_int, |
| 8 | ) std.os.windows.INT { |
| 9 | _ = inst; |
| 10 | _ = prev; |
| 11 | _ = cmd_line; |
| 12 | _ = cmd_show; |
| 13 | std.debug.print("hello from Zig wWinMain\n", .{}); |
| 14 | return 0; |
| 15 | } |