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
a2d4e5cb
Commit
a2d4e5cb
authored
Jan 10, 2010
by
Jason Edmeades
Committed by
Alexandre Julliard
Jan 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add support for vsprintf_s.
parent
e0405286
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
wcs.c
dlls/msvcrt/wcs.c
+8
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
a2d4e5cb
...
...
@@ -791,6 +791,7 @@
@ cdecl vfwprintf(ptr wstr ptr) MSVCRT_vfwprintf
@ cdecl vprintf(str ptr) MSVCRT_vprintf
@ cdecl vsprintf(ptr str ptr) MSVCRT_vsprintf
@ cdecl vsprintf_s(ptr long str ptr) MSVCRT_vsprintf_s
@ cdecl vswprintf(ptr wstr ptr) MSVCRT_vswprintf
@ cdecl vswprintf_s(ptr long wstr ptr) MSVCRT_vswprintf_s
@ cdecl vwprintf(wstr ptr) MSVCRT_vwprintf
...
...
dlls/msvcrt/wcs.c
View file @
a2d4e5cb
...
...
@@ -830,6 +830,14 @@ int CDECL MSVCRT_vsprintf( char *str, const char *format, __ms_va_list valist)
}
/*********************************************************************
* vsprintf_s (MSVCRT.@)
*/
int
CDECL
MSVCRT_vsprintf_s
(
char
*
str
,
MSVCRT_size_t
num
,
const
char
*
format
,
__ms_va_list
valist
)
{
return
MSVCRT_vsnprintf
(
str
,
num
,
format
,
valist
);
}
/*********************************************************************
* _vscprintf (MSVCRT.@)
*/
int
CDECL
_vscprintf
(
const
char
*
format
,
__ms_va_list
valist
)
...
...
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