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
f043fc32
Commit
f043fc32
authored
Oct 28, 2022
by
Bartosz Kosiorek
Committed by
Alexandre Julliard
Nov 01, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _fprintf_p implementation.
parent
52e2a535
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
7 deletions
+21
-7
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
file.c
dlls/msvcrt/file.c
+14
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
f043fc32
...
...
@@ -828,7 +828,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
@
stub _fprintf_p
@
varargs _fprintf_p(ptr str)
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr)
...
...
dlls/msvcr110/msvcr110.spec
View file @
f043fc32
...
...
@@ -1175,7 +1175,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
@
stub _fprintf_p
@
varargs _fprintf_p(ptr str)
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr)
...
...
dlls/msvcr120/msvcr120.spec
View file @
f043fc32
...
...
@@ -1176,7 +1176,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
@
stub _fprintf_p
@
varargs _fprintf_p(ptr str)
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
f043fc32
...
...
@@ -1105,7 +1105,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr) msvcr120._fpieee_flt
@ cdecl _fpreset() msvcr120._fpreset
@ varargs _fprintf_l(ptr str ptr) msvcr120._fprintf_l
@
stub
_fprintf_p
@
varargs _fprintf_p(ptr str) msvcr120.
_fprintf_p
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr) msvcr120._fputc_nolock
...
...
dlls/msvcr80/msvcr80.spec
View file @
f043fc32
...
...
@@ -494,7 +494,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
@
stub _fprintf_p
@
varargs _fprintf_p(ptr str)
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr)
...
...
dlls/msvcr90/msvcr90.spec
View file @
f043fc32
...
...
@@ -477,7 +477,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
@
stub _fprintf_p
@
varargs _fprintf_p(ptr str)
@ stub _fprintf_p_l
@ stub _fprintf_s_l
@ cdecl _fputc_nolock(long ptr)
...
...
dlls/msvcrt/file.c
View file @
f043fc32
...
...
@@ -5594,6 +5594,20 @@ int CDECL _fprintf_l(FILE* file, const char *format, _locale_t locale, ...)
return
res
;
}
/*********************************************************************
* _fprintf_p (MSVCRT.@)
*/
int
CDECL
_fprintf_p
(
FILE
*
file
,
const
char
*
format
,
...)
{
va_list
valist
;
int
res
;
va_start
(
valist
,
format
);
res
=
_vfprintf_p_l
(
file
,
format
,
NULL
,
valist
);
va_end
(
valist
);
return
res
;
}
/*********************************************************************
* fwprintf (MSVCRT.@)
*/
...
...
dlls/msvcrt/msvcrt.spec
View file @
f043fc32
...
...
@@ -461,7 +461,7 @@
@ cdecl -arch=i386,x86_64,arm,arm64 _fpieee_flt(long ptr ptr)
@ cdecl _fpreset()
@ varargs _fprintf_l(ptr str ptr)
# stub
_fprintf_p(ptr str)
@ varargs
_fprintf_p(ptr str)
# stub _fprintf_p_l(ptr str ptr)
# stub _fprintf_s_l(ptr str ptr)
@ cdecl _fputchar(long)
...
...
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