Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
33551b28
Commit
33551b28
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_s_l implementation.
parent
03ae8306
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
6 deletions
+19
-6
msvcr100.spec
dlls/msvcr100/msvcr100.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
+13
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
33551b28
...
...
@@ -830,7 +830,7 @@
@ varargs _fprintf_l(ptr str ptr)
@ varargs _fprintf_p(ptr str)
@ varargs _fprintf_p_l(ptr str ptr)
@
stub _fprintf_s_l
@
varargs _fprintf_s_l(ptr str ptr)
@ cdecl _fputc_nolock(long ptr)
@ cdecl _fputchar(long)
@ cdecl _fputwc_nolock(long ptr)
...
...
dlls/msvcr120/msvcr120.spec
View file @
33551b28
...
...
@@ -1178,7 +1178,7 @@
@ varargs _fprintf_l(ptr str ptr)
@ varargs _fprintf_p(ptr str)
@ varargs _fprintf_p_l(ptr str ptr)
@
stub _fprintf_s_l
@
varargs _fprintf_s_l(ptr str ptr)
@ cdecl _fputc_nolock(long ptr)
@ cdecl _fputchar(long)
@ cdecl _fputwc_nolock(long ptr)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
33551b28
...
...
@@ -1107,7 +1107,7 @@
@ varargs _fprintf_l(ptr str ptr) msvcr120._fprintf_l
@ varargs _fprintf_p(ptr str) msvcr120._fprintf_p
@ varargs _fprintf_p_l(ptr str ptr) msvcr120._fprintf_p_l
@
stub
_fprintf_s_l
@
varargs _fprintf_s_l(ptr str ptr) msvcr120.
_fprintf_s_l
@ cdecl _fputc_nolock(long ptr) msvcr120._fputc_nolock
@ cdecl _fputchar(long) msvcr120._fputchar
@ cdecl _fputwc_nolock(long ptr) msvcr120._fputwc_nolock
...
...
dlls/msvcr80/msvcr80.spec
View file @
33551b28
...
...
@@ -496,7 +496,7 @@
@ varargs _fprintf_l(ptr str ptr)
@ varargs _fprintf_p(ptr str)
@ varargs _fprintf_p_l(ptr str ptr)
@
stub _fprintf_s_l
@
varargs _fprintf_s_l(ptr str ptr)
@ cdecl _fputc_nolock(long ptr)
@ cdecl _fputchar(long)
@ cdecl _fputwc_nolock(long ptr)
...
...
dlls/msvcr90/msvcr90.spec
View file @
33551b28
...
...
@@ -479,7 +479,7 @@
@ varargs _fprintf_l(ptr str ptr)
@ varargs _fprintf_p(ptr str)
@ varargs _fprintf_p_l(ptr str ptr)
@
stub _fprintf_s_l
@
varargs _fprintf_s_l(ptr str ptr)
@ cdecl _fputc_nolock(long ptr)
@ cdecl _fputchar(long)
@ cdecl _fputwc_nolock(long ptr)
...
...
dlls/msvcrt/file.c
View file @
33551b28
...
...
@@ -5622,6 +5622,19 @@ int CDECL _fprintf_p_l(FILE* file, const char *format, _locale_t locale, ...)
}
/*********************************************************************
* _fprintf_s_l (MSVCRT.@)
*/
int
CDECL
_fprintf_s_l
(
FILE
*
file
,
const
char
*
format
,
_locale_t
locale
,
...)
{
va_list
valist
;
int
res
;
va_start
(
valist
,
locale
);
res
=
_vfprintf_s_l
(
file
,
format
,
locale
,
valist
);
va_end
(
valist
);
return
res
;
}
/*********************************************************************
* fwprintf (MSVCRT.@)
*/
int
WINAPIV
fwprintf
(
FILE
*
file
,
const
wchar_t
*
format
,
...)
...
...
dlls/msvcrt/msvcrt.spec
View file @
33551b28
...
...
@@ -463,7 +463,7 @@
@ varargs _fprintf_l(ptr str ptr)
@ varargs _fprintf_p(ptr str)
@ varargs _fprintf_p_l(ptr str ptr)
# stub
_fprintf_s_l(ptr str ptr)
@ varargs
_fprintf_s_l(ptr str ptr)
@ cdecl _fputchar(long)
@ cdecl _fputwchar(long)
# stub _free_dbg(ptr 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