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
08aa6ae5
Commit
08aa6ae5
authored
Jan 06, 2012
by
Daniel Lehman
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _snwprintf_l.
parent
8bed3b6f
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
4 deletions
+18
-4
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
wcs.c
dlls/msvcrt/wcs.c
+14
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
08aa6ae5
...
...
@@ -1099,7 +1099,7 @@
@ varargs _snscanf_s(str long str) msvcrt._snscanf_s
@ varargs _snscanf_s_l(str long str ptr) msvcrt._snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@
stub
_snwprintf_l
@
varargs _snwprintf_l(ptr long wstr ptr) msvcrt.
_snwprintf_l
@ varargs _snwprintf_s(ptr long long wstr) msvcrt._snwprintf_s
@ stub _snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
...
...
dlls/msvcr80/msvcr80.spec
View file @
08aa6ae5
...
...
@@ -953,7 +953,7 @@
@ varargs _snscanf_s(str long str) msvcrt._snscanf_s
@ varargs _snscanf_s_l(str long str ptr) msvcrt._snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@
stub
_snwprintf_l
@
varargs _snwprintf_l(ptr long wstr ptr) msvcrt.
_snwprintf_l
@ varargs _snwprintf_s(ptr long long wstr) msvcrt._snwprintf_s
@ stub _snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
...
...
dlls/msvcr90/msvcr90.spec
View file @
08aa6ae5
...
...
@@ -946,7 +946,7 @@
@ varargs _snscanf_s(str long str) msvcrt._snscanf_s
@ varargs _snscanf_s_l(str long str ptr) msvcrt._snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@
stub
_snwprintf_l
@
varargs _snwprintf_l(ptr long wstr ptr) msvcrt.
_snwprintf_l
@ varargs _snwprintf_s(ptr long long wstr) msvcrt._snwprintf_s
@ stub _snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
...
...
dlls/msvcrt/msvcrt.spec
View file @
08aa6ae5
...
...
@@ -890,7 +890,7 @@
@ varargs _snscanf_s(str long str) MSVCRT__snscanf_s
@ varargs _snscanf_s_l(str long str ptr) MSVCRT__snscanf_s_l
@ varargs _snwprintf(ptr long wstr) MSVCRT__snwprintf
# stub _snwprintf_l(ptr long wstr ptr)
@ varargs _snwprintf_l(ptr long wstr ptr) MSVCRT__snwprintf_l
@ varargs _snwprintf_s(ptr long long wstr) MSVCRT__snwprintf_s
# stub _snwprintf_s_l(ptr long long wstr ptr)
@ varargs _snwscanf(wstr long wstr) MSVCRT__snwscanf
...
...
dlls/msvcrt/wcs.c
View file @
08aa6ae5
...
...
@@ -778,6 +778,20 @@ int CDECL MSVCRT__snwprintf( MSVCRT_wchar_t *str, unsigned int len, const MSVCRT
}
/*********************************************************************
* _snwprintf_l (MSVCRT.@)
*/
int
CDECL
MSVCRT__snwprintf_l
(
MSVCRT_wchar_t
*
str
,
unsigned
int
len
,
const
MSVCRT_wchar_t
*
format
,
MSVCRT__locale_t
locale
,
...)
{
int
retval
;
__ms_va_list
valist
;
__ms_va_start
(
valist
,
locale
);
retval
=
MSVCRT_vsnwprintf_l
(
str
,
len
,
format
,
locale
,
valist
);
__ms_va_end
(
valist
);
return
retval
;
}
/*********************************************************************
* _snwprintf_s (MSVCRT.@)
*/
int
CDECL
MSVCRT__snwprintf_s
(
MSVCRT_wchar_t
*
str
,
unsigned
int
len
,
unsigned
int
count
,
...
...
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