mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
10 lines
322 B
Zig
10 lines
322 B
Zig
|
// 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;
|
||
|
}
|