Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
62fd803e
Commit
62fd803e
authored
Mar 29, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Only add __acrt_iob_func() to the import library of msvcrt itself.
This partially reverts
ca501174
. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cad72d3c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
10 deletions
+12
-10
Makefile.in
dlls/msvcr100/Makefile.in
+0
-1
Makefile.in
dlls/msvcr110/Makefile.in
+0
-1
Makefile.in
dlls/msvcr120/Makefile.in
+0
-1
Makefile.in
dlls/msvcr70/Makefile.in
+0
-1
Makefile.in
dlls/msvcr71/Makefile.in
+0
-1
Makefile.in
dlls/msvcr80/Makefile.in
+0
-1
Makefile.in
dlls/msvcr90/Makefile.in
+0
-1
file.c
dlls/msvcrt/file.c
+10
-0
Makefile.in
dlls/ucrtbase/Makefile.in
+0
-1
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+2
-2
No files found.
dlls/msvcr100/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr110/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr120/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr70/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr71/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr80/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcr90/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcrt/file.c
View file @
62fd803e
...
...
@@ -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.@)
*/
...
...
dlls/ucrtbase/Makefile.in
View file @
62fd803e
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
iob.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
62fd803e
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment