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
85900230
Commit
85900230
authored
Nov 06, 2022
by
Bartosz Kosiorek
Committed by
Alexandre Julliard
Nov 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _vcwprintf_l implementation.
parent
af7aaba0
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
6 deletions
+13
-6
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
console.c
dlls/msvcrt/console.c
+7
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
85900230
...
@@ -1428,7 +1428,7 @@
...
@@ -1428,7 +1428,7 @@
@ stub _vcprintf_s
@ stub _vcprintf_s
@ stub _vcprintf_s_l
@ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
@
stub _vcwprintf_l
@
cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p
@ stub _vcwprintf_p
@ stub _vcwprintf_p_l
@ stub _vcwprintf_p_l
@ stub _vcwprintf_s
@ stub _vcwprintf_s
...
...
dlls/msvcr110/msvcr110.spec
View file @
85900230
...
@@ -1785,7 +1785,7 @@
...
@@ -1785,7 +1785,7 @@
@ stub _vcprintf_s
@ stub _vcprintf_s
@ stub _vcprintf_s_l
@ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
@
stub _vcwprintf_l
@
cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p
@ stub _vcwprintf_p
@ stub _vcwprintf_p_l
@ stub _vcwprintf_p_l
@ stub _vcwprintf_s
@ stub _vcwprintf_s
...
...
dlls/msvcr120/msvcr120.spec
View file @
85900230
...
@@ -1804,7 +1804,7 @@
...
@@ -1804,7 +1804,7 @@
@ stub _vcprintf_s
@ stub _vcprintf_s
@ stub _vcprintf_s_l
@ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
@
stub _vcwprintf_l
@
cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p
@ stub _vcwprintf_p
@ stub _vcwprintf_p_l
@ stub _vcwprintf_p_l
@ stub _vcwprintf_s
@ stub _vcwprintf_s
...
...
dlls/msvcr80/msvcr80.spec
View file @
85900230
...
@@ -1108,7 +1108,7 @@
...
@@ -1108,7 +1108,7 @@
@ stub _vcprintf_s
@ stub _vcprintf_s
@ stub _vcprintf_s_l
@ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
@
stub _vcwprintf_l
@
cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p
@ stub _vcwprintf_p
@ stub _vcwprintf_p_l
@ stub _vcwprintf_p_l
@ stub _vcwprintf_s
@ stub _vcwprintf_s
...
...
dlls/msvcr90/msvcr90.spec
View file @
85900230
...
@@ -1083,7 +1083,7 @@
...
@@ -1083,7 +1083,7 @@
@ stub _vcprintf_s
@ stub _vcprintf_s
@ stub _vcprintf_s_l
@ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
@
stub _vcwprintf_l
@
cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p
@ stub _vcwprintf_p
@ stub _vcwprintf_p_l
@ stub _vcwprintf_p_l
@ stub _vcwprintf_s
@ stub _vcwprintf_s
...
...
dlls/msvcrt/console.c
View file @
85900230
...
@@ -555,6 +555,13 @@ int WINAPIV _cprintf(const char* format, ...)
...
@@ -555,6 +555,13 @@ int WINAPIV _cprintf(const char* format, ...)
return
retval
;
return
retval
;
}
}
/*********************************************************************
* _vcwprintf_l (MSVCRT.@)
*/
int
CDECL
_vcwprintf_l
(
const
wchar_t
*
format
,
_locale_t
locale
,
va_list
valist
)
{
return
pf_printf_w
(
puts_clbk_console_w
,
NULL
,
format
,
locale
,
0
,
arg_clbk_valist
,
NULL
,
&
valist
);
}
/*********************************************************************
/*********************************************************************
* _vcwprintf (MSVCRT.@)
* _vcwprintf (MSVCRT.@)
...
...
dlls/msvcrt/msvcrt.spec
View file @
85900230
...
@@ -1042,7 +1042,7 @@
...
@@ -1042,7 +1042,7 @@
# stub _vcprintf_s(str ptr)
# stub _vcprintf_s(str ptr)
# stub _vcprintf_s_l(str ptr ptr)
# stub _vcprintf_s_l(str ptr ptr)
@ cdecl _vcwprintf(wstr ptr)
@ cdecl _vcwprintf(wstr ptr)
# stub
_vcwprintf_l(wstr ptr ptr)
@ cdecl
_vcwprintf_l(wstr ptr ptr)
# stub _vcwprintf_p(wstr ptr)
# stub _vcwprintf_p(wstr ptr)
# stub _vcwprintf_p_l(wstr ptr ptr)
# stub _vcwprintf_p_l(wstr ptr ptr)
# stub _vcwprintf_s(wstr ptr)
# stub _vcwprintf_s(wstr ptr)
...
...
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