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
97807760
Commit
97807760
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 _scwprintf implementation.
parent
1a234159
Hide 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 @
97807760
...
...
@@ -1012,7 +1012,7 @@
@ stub _scprintf_l
@ stub _scprintf_p
@ stub _scprintf_p_l
@
stub
_scwprintf
@
varargs _scwprintf(wstr) msvcrt.
_scwprintf
@ stub _scwprintf_l
@ stub _scwprintf_p
@ stub _scwprintf_p_l
...
...
dlls/msvcr80/msvcr80.spec
View file @
97807760
...
...
@@ -857,7 +857,7 @@
@ stub _scprintf_l
@ stub _scprintf_p
@ stub _scprintf_p_l
@
stub
_scwprintf
@
varargs _scwprintf(wstr) msvcrt.
_scwprintf
@ stub _scwprintf_l
@ stub _scwprintf_p
@ stub _scwprintf_p_l
...
...
dlls/msvcr90/msvcr90.spec
View file @
97807760
...
...
@@ -843,7 +843,7 @@
@ stub _scprintf_l
@ stub _scprintf_p
@ stub _scprintf_p_l
@
stub
_scwprintf
@
varargs _scwprintf(wstr) msvcrt.
_scwprintf
@ stub _scwprintf_l
@ stub _scwprintf_p
@ stub _scwprintf_p_l
...
...
dlls/msvcrt/msvcrt.spec
View file @
97807760
...
...
@@ -801,7 +801,7 @@
# stub _scprintf
# stub _scprintf_l
# stub _scprintf_p_l
# stub
_scwprintf
@ varargs _scwprintf(wstr) MSVCRT_
_scwprintf
# stub _scwprintf_l
# stub _scwprintf_p_l
@ cdecl _searchenv(str str ptr)
...
...
dlls/msvcrt/wcs.c
View file @
97807760
...
...
@@ -1247,6 +1247,20 @@ int CDECL MSVCRT_sprintf_s( char *str, MSVCRT_size_t num, const char *format, ..
}
/*********************************************************************
* _scwprintf (MSVCRT.@)
*/
int
CDECL
MSVCRT__scwprintf
(
const
MSVCRT_wchar_t
*
format
,
...
)
{
__ms_va_list
ap
;
int
r
;
__ms_va_start
(
ap
,
format
);
r
=
MSVCRT_vsnwprintf
(
NULL
,
INT_MAX
,
format
,
ap
);
__ms_va_end
(
ap
);
return
r
;
}
/*********************************************************************
* swprintf (MSVCRT.@)
*/
int
CDECL
MSVCRT_swprintf
(
MSVCRT_wchar_t
*
str
,
const
MSVCRT_wchar_t
*
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