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
af7aaba0
Commit
af7aaba0
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 _vcprintf_l implementation.
parent
69ce7894
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
7 deletions
+17
-7
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+2
-2
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
+10
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
af7aaba0
...
...
@@ -1265,7 +1265,7 @@
@ varargs _scprintf_p_l(str ptr)
@ varargs _scwprintf(wstr)
@ varargs _scwprintf_l(wstr ptr)
@
stub _scwprintf_p
@
varargs _scwprintf_p(wstr)
@ varargs _scwprintf_p_l(wstr ptr)
@ cdecl _searchenv(str str ptr)
@ cdecl _searchenv_s(str str ptr long)
...
...
@@ -1422,7 +1422,7 @@
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@ cdecl _vcprintf(str ptr)
@
stub _vcprintf_l
@
cdecl _vcprintf_l(str ptr ptr)
@ stub _vcprintf_p
@ stub _vcprintf_p_l
@ stub _vcprintf_s
...
...
dlls/msvcr110/msvcr110.spec
View file @
af7aaba0
...
...
@@ -1779,7 +1779,7 @@
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@ cdecl _vcprintf(str ptr)
@
stub _vcprintf_l
@
cdecl _vcprintf_l(str ptr ptr)
@ stub _vcprintf_p
@ stub _vcprintf_p_l
@ stub _vcprintf_s
...
...
dlls/msvcr120/msvcr120.spec
View file @
af7aaba0
...
...
@@ -1798,7 +1798,7 @@
@ cdecl _utime64(str ptr)
@ cdecl _vacopy(ptr ptr)
@ cdecl _vcprintf(str ptr)
@
stub _vcprintf_l
@
cdecl _vcprintf_l(str ptr ptr)
@ stub _vcprintf_p
@ stub _vcprintf_p_l
@ stub _vcprintf_s
...
...
dlls/msvcr80/msvcr80.spec
View file @
af7aaba0
...
...
@@ -1102,7 +1102,7 @@
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@ cdecl _vcprintf(str ptr)
@
stub _vcprintf_l
@
cdecl _vcprintf_l(str ptr ptr)
@ stub _vcprintf_p
@ stub _vcprintf_p_l
@ stub _vcprintf_s
...
...
dlls/msvcr90/msvcr90.spec
View file @
af7aaba0
...
...
@@ -1077,7 +1077,7 @@
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@ cdecl _vcprintf(str ptr)
@
stub _vcprintf_l
@
cdecl _vcprintf_l(str ptr ptr)
@ stub _vcprintf_p
@ stub _vcprintf_p_l
@ stub _vcprintf_s
...
...
dlls/msvcrt/console.c
View file @
af7aaba0
...
...
@@ -522,6 +522,16 @@ static int puts_clbk_console_w(void *ctx, int len, const wchar_t *str)
return
len
;
}
#if _MSVCR_VER<=120
/*********************************************************************
* _vcprintf_l (MSVCRT.@)
*/
int
CDECL
_vcprintf_l
(
const
char
*
format
,
_locale_t
locale
,
va_list
valist
)
{
return
pf_printf_a
(
puts_clbk_console_a
,
NULL
,
format
,
locale
,
0
,
arg_clbk_valist
,
NULL
,
&
valist
);
}
#endif
/*********************************************************************
* _vcprintf (MSVCRT.@)
*/
...
...
dlls/msvcrt/msvcrt.spec
View file @
af7aaba0
...
...
@@ -1036,7 +1036,7 @@
@ cdecl _utime32(str ptr)
@ cdecl _utime64(str ptr)
@ cdecl _vcprintf(str ptr)
# stub
_vcprintf_l(str ptr ptr)
@ cdecl
_vcprintf_l(str ptr ptr)
# stub _vcprintf_p(str ptr)
# stub _vcprintf_p_l(str ptr ptr)
# stub _vcprintf_s(str 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