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
3ac9ff07
Commit
3ac9ff07
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 _scprintf_p implementation.
parent
25d44dd3
Show 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
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
wcs.c
dlls/msvcrt/wcs.c
+13
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
3ac9ff07
...
...
@@ -1261,7 +1261,7 @@
@ varargs _scanf_s_l(str ptr)
@ varargs _scprintf(str)
@ varargs _scprintf_l(str ptr)
@
stub _scprintf_p
@
varargs _scprintf_p(str)
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr)
@ stub _scwprintf_l
...
...
dlls/msvcr110/msvcr110.spec
View file @
3ac9ff07
...
...
@@ -1618,7 +1618,7 @@
@ varargs _scanf_s_l(str ptr)
@ varargs _scprintf(str)
@ varargs _scprintf_l(str ptr)
@
stub _scprintf_p
@
varargs _scprintf_p(str)
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr)
@ stub _scwprintf_l
...
...
dlls/msvcr120/msvcr120.spec
View file @
3ac9ff07
...
...
@@ -1629,7 +1629,7 @@
@ varargs _scanf_s_l(str ptr)
@ varargs _scprintf(str)
@ varargs _scprintf_l(str ptr)
@
stub _scprintf_p
@
varargs _scprintf_p(str)
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr)
@ stub _scwprintf_l
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
3ac9ff07
...
...
@@ -1355,7 +1355,7 @@
@ varargs _scanf_s_l(str ptr) msvcr120._scanf_s_l
@ varargs _scprintf(str) msvcr120._scprintf
@ varargs _scprintf_l(str ptr) msvcr120._scprintf_l
@
stub
_scprintf_p
@
varargs _scprintf_p(str) msvcr120.
_scprintf_p
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr) msvcr120._scwprintf
@ stub _scwprintf_l
...
...
dlls/msvcr80/msvcr80.spec
View file @
3ac9ff07
...
...
@@ -939,7 +939,7 @@
@ varargs _scanf_s_l(str ptr)
@ varargs _scprintf(str)
@ varargs _scprintf_l(str ptr)
@
stub _scprintf_p
@
varargs _scprintf_p(str)
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr)
@ stub _scwprintf_l
...
...
dlls/msvcr90/msvcr90.spec
View file @
3ac9ff07
...
...
@@ -915,7 +915,7 @@
@ varargs _scanf_s_l(str ptr)
@ varargs _scprintf(str)
@ varargs _scprintf_l(str ptr)
@
stub _scprintf_p
@
varargs _scprintf_p(str)
@ stub _scprintf_p_l
@ varargs _scwprintf(wstr)
@ stub _scwprintf_l
...
...
dlls/msvcrt/wcs.c
View file @
3ac9ff07
...
...
@@ -1330,6 +1330,19 @@ int WINAPIV _scprintf_l(const char *format, _locale_t locale, ...)
}
/*********************************************************************
* _scprintf_p (MSVCRT.@)
*/
int
WINAPIV
_scprintf_p
(
const
char
*
format
,
...)
{
int
retval
;
va_list
valist
;
va_start
(
valist
,
format
);
retval
=
_vscprintf_p_l
(
format
,
NULL
,
valist
);
va_end
(
valist
);
return
retval
;
}
/*********************************************************************
* _vsnwprintf (MSVCRT.@)
*/
int
CDECL
_vsnwprintf
(
wchar_t
*
str
,
size_t
len
,
...
...
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