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
69ad826e
Commit
69ad826e
authored
Apr 08, 2016
by
Daniel Lehman
Committed by
Alexandre Julliard
Aug 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Add sprintf.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1135db70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
msvcp_main.c
dlls/msvcp90/msvcp_main.c
+10
-0
No files found.
dlls/msvcp90/msvcp_main.c
View file @
69ad826e
...
...
@@ -117,6 +117,16 @@ int __cdecl _scprintf(const char* fmt, ...)
__ms_va_end
(
valist
);
return
ret
;
}
int
__cdecl
sprintf
(
char
*
buf
,
const
char
*
fmt
,
...)
{
int
ret
;
__ms_va_list
valist
;
__ms_va_start
(
valist
,
fmt
);
ret
=
__stdio_common_vsprintf
(
UCRTBASE_PRINTF_STANDARD_SNPRINTF_BEHAVIOUR
,
buf
,
-
1
,
fmt
,
NULL
,
valist
);
__ms_va_end
(
valist
);
return
ret
;
}
#endif
static
void
init_cxx_funcs
(
void
)
...
...
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