msvcrt: Only add __acrt_iob_func() to the import library of msvcrt itself.
This partially reverts ca50117418
.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cad72d3cd7
commit
62fd803e52
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -786,6 +786,16 @@ MSVCRT_FILE * CDECL __p__iob(void)
|
|||
return &MSVCRT__iob[0];
|
||||
}
|
||||
|
||||
#if _MSVCR_VER >= 140
|
||||
/*********************************************************************
|
||||
* __acrt_iob_func(UCRTBASE.@)
|
||||
*/
|
||||
MSVCRT_FILE * CDECL MSVCRT___acrt_iob_func(unsigned idx)
|
||||
{
|
||||
return &MSVCRT__iob[idx];
|
||||
}
|
||||
#endif
|
||||
|
||||
/*********************************************************************
|
||||
* _access (MSVCRT.@)
|
||||
*/
|
||||
|
|
|
@ -20,7 +20,6 @@ C_SRCS = \
|
|||
exit.c \
|
||||
file.c \
|
||||
heap.c \
|
||||
iob.c \
|
||||
locale.c \
|
||||
lock.c \
|
||||
main.c \
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
@ cdecl ___lc_locale_name_func()
|
||||
@ cdecl ___mb_cur_max_func() MSVCRT____mb_cur_max_func
|
||||
@ cdecl ___mb_cur_max_l_func(ptr)
|
||||
@ cdecl __acrt_iob_func(long)
|
||||
@ cdecl __acrt_iob_func(long) MSVCRT___acrt_iob_func
|
||||
@ cdecl __conio_common_vcprintf(int64 str ptr ptr) MSVCRT__conio_common_vcprintf
|
||||
@ stub __conio_common_vcprintf_p
|
||||
@ stub __conio_common_vcprintf_s
|
||||
|
@ -758,7 +758,7 @@
|
|||
@ stub _o____lc_collate_cp_func
|
||||
@ stub _o____lc_locale_name_func
|
||||
@ stub _o____mb_cur_max_func
|
||||
@ cdecl _o___acrt_iob_func(long) __acrt_iob_func
|
||||
@ cdecl _o___acrt_iob_func(long) MSVCRT___acrt_iob_func
|
||||
@ stub _o___conio_common_vcprintf
|
||||
@ stub _o___conio_common_vcprintf_p
|
||||
@ stub _o___conio_common_vcprintf_s
|
||||
|
|
Loading…
Reference in New Issue