Commit b360bf81 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Export an import symbol for __acrt_iob_func() for compatibility with Mingw.

parent ac38c175
......@@ -34,3 +34,9 @@ MSVCRT_FILE * CDECL __acrt_iob_func(unsigned idx)
{
return __p__iob() + idx;
}
#ifdef __i386__
void *_imp____acrt_iob_func = __acrt_iob_func;
#else
void *__imp___acrt_iob_func = __acrt_iob_func;
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment