zig/std/special/bootstrap_lib.zig

14 lines
384 B
Zig
Raw Normal View History

2017-10-16 06:14:28 +01:00
// This file is included in the compilation unit when exporting a library on windows.
const std = @import("std");
2017-12-18 14:59:57 +00:00
comptime {
@export("_DllMainCRTStartup", _DllMainCRTStartup);
}
stdcallcc fn _DllMainCRTStartup(hinstDLL: std.os.windows.HINSTANCE, fdwReason: std.os.windows.DWORD,
2017-10-16 06:14:28 +01:00
lpReserved: std.os.windows.LPVOID) -> std.os.windows.BOOL
{
return std.os.windows.TRUE;
}