mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 23:33:07 +00:00
11 lines
207 B
C
Vendored
11 lines
207 B
C
Vendored
#include <winbase.h>
|
|
|
|
#ifndef __LIBMSVCRT__
|
|
#error "This file should only be used in libmsvcrt.a"
|
|
#endif
|
|
|
|
static inline HANDLE __mingw_get_msvcrt_handle(void)
|
|
{
|
|
return GetModuleHandleW(L"msvcrt.dll");
|
|
}
|