mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
10 lines
213 B
C
Vendored
10 lines
213 B
C
Vendored
#include <winbase.h>
|
|
|
|
#ifndef __LIBMSVCRT_OS__
|
|
#error "This file should only be used in libmsvcrt-os.a"
|
|
#endif
|
|
|
|
static inline HANDLE __mingw_get_msvcrt_handle(void)
|
|
{
|
|
return GetModuleHandleW(L"msvcrt.dll");
|
|
}
|