aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/include/msvcrt.h
blob: 9e48bf0694b3547f449e38109f9531f5d16bf3d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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