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
6a77a36b
Commit
6a77a36b
authored
Oct 18, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implemented vswprintf_s.
parent
1c9886d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
wcs.c
dlls/msvcrt/wcs.c
+14
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
6a77a36b
...
...
@@ -760,6 +760,7 @@
@ cdecl vprintf(str ptr) MSVCRT_vprintf
@ cdecl vsprintf(ptr str ptr) MSVCRT_vsprintf
@ cdecl vswprintf(ptr wstr ptr) MSVCRT_vswprintf
@ cdecl vswprintf_s(ptr long wstr ptr) MSVCRT_vswprintf_s
@ cdecl vwprintf(wstr ptr) MSVCRT_vwprintf
@ cdecl wcscat(wstr wstr) ntdll.wcscat
@ cdecl wcscat_s(wstr long wstr) MSVCRT_wcscat_s
...
...
dlls/msvcrt/wcs.c
View file @
6a77a36b
...
...
@@ -657,6 +657,11 @@ static int pf_vsnprintf( pf_output *out, const WCHAR *format, va_list valist )
flags
.
Format
=
*
p
;
r
=
0
;
if
(
flags
.
Format
==
'$'
)
{
FIXME
(
"Positional parameters are not supported (%s)
\n
"
,
wine_dbgstr_w
(
format
));
return
-
1
;
}
/* output a string */
if
(
flags
.
Format
==
's'
||
flags
.
Format
==
'S'
)
r
=
pf_handle_string_format
(
out
,
va_arg
(
valist
,
const
void
*
),
-
1
,
...
...
@@ -876,6 +881,15 @@ int CDECL MSVCRT_vswprintf( MSVCRT_wchar_t* str, const MSVCRT_wchar_t* format, v
}
/*********************************************************************
* vswprintf_s (MSVCRT.@)
*/
int
CDECL
MSVCRT_vswprintf_s
(
MSVCRT_wchar_t
*
str
,
MSVCRT_size_t
num
,
const
MSVCRT_wchar_t
*
format
,
va_list
args
)
{
/* FIXME: must handle positional arguments */
return
MSVCRT_vsnwprintf
(
str
,
num
,
format
,
args
);
}
/*********************************************************************
* wcscoll (MSVCRT.@)
*/
int
CDECL
MSVCRT_wcscoll
(
const
MSVCRT_wchar_t
*
str1
,
const
MSVCRT_wchar_t
*
str2
)
...
...
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