aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/windows_entry_points/wwinmain.zig
blob: d6b8973853089f645421ffd9e1034ff301d671b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const std = @import("std");

pub fn wWinMain(
    inst: std.os.windows.HINSTANCE,
    prev: ?std.os.windows.HINSTANCE,
    cmd_line: std.os.windows.LPWSTR,
    cmd_show: c_int,
) std.os.windows.INT {
    _ = inst;
    _ = prev;
    _ = cmd_line;
    _ = cmd_show;
    std.debug.print("hello from Zig wWinMain\n", .{});
    return 0;
}