Files
WrldBox/.tmp_zig/lib/zig/libc/mingw/include/msvcrt.h
swim67667 c17dfc94ce
Some checks failed
Build Project / build (ubuntu-latest) (push) Failing after 12m33s
added multi-compiling stuff (only works on my mac for now)
2026-06-28 16:40:20 -04:00

16 lines
256 B
C

#ifndef __LIBMSVCRT_OS__
#error "This file should only be used in libmsvcrt-os.a"
#endif
#ifndef MSVCRT_H
#define MSVCRT_H
#include <winbase.h>
static inline HMODULE __mingw_get_msvcrt_handle(void)
{
return GetModuleHandleA("msvcrt.dll");
}
#endif