zig/std/special/bootstrap_lib.zig

10 lines
322 B
Zig
Raw Normal View History

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