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
1a234159
Commit
1a234159
authored
Jun 10, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _snwprintf_s implementation.
parent
59bddde5
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 @
1a234159
...
@@ -1052,7 +1052,7 @@
...
@@ -1052,7 +1052,7 @@
@ stub _snscanf_s_l
@ stub _snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ stub _snwprintf_l
@ stub _snwprintf_l
@
stub
_snwprintf_s
@
varargs _snwprintf_s(ptr long long wstr) msvcrt.
_snwprintf_s
@ stub _snwprintf_s_l
@ stub _snwprintf_s_l
@ stub _snwscanf
@ stub _snwscanf
@ stub _snwscanf_l
@ stub _snwscanf_l
...
...
dlls/msvcr80/msvcr80.spec
View file @
1a234159
...
@@ -899,7 +899,7 @@
...
@@ -899,7 +899,7 @@
@ stub _snscanf_s_l
@ stub _snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ stub _snwprintf_l
@ stub _snwprintf_l
@
stub
_snwprintf_s
@
varargs _snwprintf_s(ptr long long wstr) msvcrt.
_snwprintf_s
@ stub _snwprintf_s_l
@ stub _snwprintf_s_l
@ stub _snwscanf
@ stub _snwscanf
@ stub _snwscanf_l
@ stub _snwscanf_l
...
...
dlls/msvcr90/msvcr90.spec
View file @
1a234159
...
@@ -885,7 +885,7 @@
...
@@ -885,7 +885,7 @@
@ stub _snscanf_s_l
@ stub _snscanf_s_l
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ varargs _snwprintf(ptr long wstr) msvcrt._snwprintf
@ stub _snwprintf_l
@ stub _snwprintf_l
@
stub
_snwprintf_s
@
varargs _snwprintf_s(ptr long long wstr) msvcrt.
_snwprintf_s
@ stub _snwprintf_s_l
@ stub _snwprintf_s_l
@ stub _snwscanf
@ stub _snwscanf
@ stub _snwscanf_l
@ stub _snwscanf_l
...
...
dlls/msvcrt/msvcrt.spec
View file @
1a234159
...
@@ -838,7 +838,7 @@
...
@@ -838,7 +838,7 @@
# stub _snscanf_s_l
# stub _snscanf_s_l
@ varargs _snwprintf(ptr long wstr) MSVCRT__snwprintf
@ varargs _snwprintf(ptr long wstr) MSVCRT__snwprintf
# stub _snwprintf_l
# stub _snwprintf_l
# stub
_snwprintf_s
@ varargs _snwprintf_s(ptr long long wstr) MSVCRT_
_snwprintf_s
# stub _snwprintf_s_l
# stub _snwprintf_s_l
# stub _snwscanf
# stub _snwscanf
# stub _snwscanf_l
# stub _snwscanf_l
...
...
dlls/msvcrt/wcs.c
View file @
1a234159
...
@@ -1205,6 +1205,20 @@ int CDECL MSVCRT__snwprintf( MSVCRT_wchar_t *str, unsigned int len, const MSVCRT
...
@@ -1205,6 +1205,20 @@ int CDECL MSVCRT__snwprintf( MSVCRT_wchar_t *str, unsigned int len, const MSVCRT
}
}
/*********************************************************************
/*********************************************************************
* _snwprintf_s (MSVCRT.@)
*/
int
CDECL
MSVCRT__snwprintf_s
(
MSVCRT_wchar_t
*
str
,
unsigned
int
len
,
unsigned
int
count
,
const
MSVCRT_wchar_t
*
format
,
...)
{
int
retval
;
__ms_va_list
valist
;
__ms_va_start
(
valist
,
format
);
retval
=
MSVCRT_vsnwprintf_s_l
(
str
,
len
,
count
,
format
,
NULL
,
valist
);
__ms_va_end
(
valist
);
return
retval
;
}
/*********************************************************************
* sprintf (MSVCRT.@)
* sprintf (MSVCRT.@)
*/
*/
int
CDECL
MSVCRT_sprintf
(
char
*
str
,
const
char
*
format
,
...
)
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