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
dadb2fdf
Commit
dadb2fdf
authored
Sep 19, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _snwprintf_s_l implementation.
parent
5bd3bfff
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
5 deletions
+19
-5
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.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 @
dadb2fdf
...
...
@@ -1300,7 +1300,7 @@
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ 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 _snwprintf_s_l(ptr long long wstr ptr) msvcrt.
_snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
@ varargs _snwscanf_l(wstr long wstr ptr) msvcrt._snwscanf_l
@ varargs _snwscanf_s(wstr long wstr) msvcrt._snwscanf_s
...
...
dlls/msvcr110/msvcr110.spec
View file @
dadb2fdf
...
...
@@ -1658,7 +1658,7 @@
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ 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 _snwprintf_s_l(ptr long long wstr ptr) msvcrt.
_snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
@ varargs _snwscanf_l(wstr long wstr ptr) msvcrt._snwscanf_l
@ varargs _snwscanf_s(wstr long wstr) msvcrt._snwscanf_s
...
...
dlls/msvcr80/msvcr80.spec
View file @
dadb2fdf
...
...
@@ -980,7 +980,7 @@
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ 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 _snwprintf_s_l(ptr long long wstr ptr) msvcrt.
_snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
@ varargs _snwscanf_l(wstr long wstr ptr) msvcrt._snwscanf_l
@ varargs _snwscanf_s(wstr long wstr) msvcrt._snwscanf_s
...
...
dlls/msvcr90/msvcr90.spec
View file @
dadb2fdf
...
...
@@ -955,7 +955,7 @@
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ 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 _snwprintf_s_l(ptr long long wstr ptr) msvcrt.
_snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) msvcrt._snwscanf
@ varargs _snwscanf_l(wstr long wstr ptr) msvcrt._snwscanf_l
@ varargs _snwscanf_s(wstr long wstr) msvcrt._snwscanf_s
...
...
dlls/msvcrt/msvcrt.spec
View file @
dadb2fdf
...
...
@@ -922,7 +922,7 @@
@ varargs _snwprintf(ptr long wstr) MSVCRT__snwprintf
@ 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 _snwprintf_s_l(ptr long long wstr ptr) MSVCRT__snwprintf_s_l
@ varargs _snwscanf(wstr long wstr) MSVCRT__snwscanf
@ varargs _snwscanf_l(wstr long wstr ptr) MSVCRT__snwscanf_l
@ varargs _snwscanf_s(wstr long wstr) MSVCRT__snwscanf_s
...
...
dlls/msvcrt/wcs.c
View file @
dadb2fdf
...
...
@@ -883,6 +883,20 @@ int CDECL MSVCRT__snwprintf_s( MSVCRT_wchar_t *str, unsigned int len, unsigned i
}
/*********************************************************************
* _snwprintf_s_l (MSVCRT.@)
*/
int
CDECL
MSVCRT__snwprintf_s_l
(
MSVCRT_wchar_t
*
str
,
unsigned
int
len
,
unsigned
int
count
,
const
MSVCRT_wchar_t
*
format
,
MSVCRT__locale_t
locale
,
...
)
{
int
retval
;
__ms_va_list
valist
;
__ms_va_start
(
valist
,
locale
);
retval
=
MSVCRT_vsnwprintf_s_l
(
str
,
len
,
count
,
format
,
locale
,
valist
);
__ms_va_end
(
valist
);
return
retval
;
}
/*********************************************************************
* sprintf (MSVCRT.@)
*/
int
CDECL
MSVCRT_sprintf
(
char
*
str
,
const
char
*
format
,
...
)
...
...
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