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
af6fd252
Commit
af6fd252
authored
Sep 20, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr90: Fix _vswprintf_p implementation.
parent
0f500eac
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
+12
-2
msvcr90.c
dlls/msvcr90/msvcr90.c
+8
-0
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
wcs.c
dlls/msvcrt/wcs.c
+1
-1
stdio.h
include/msvcrt/stdio.h
+1
-0
wchar.h
include/msvcrt/wchar.h
+1
-0
No files found.
dlls/msvcr90/msvcr90.c
View file @
af6fd252
...
...
@@ -358,3 +358,11 @@ void* CDECL _CRT_RTC_INITW(void *unk1, void *unk2, int unk3, int unk4, int unk5)
TRACE
(
"%p %p %x %x %x
\n
"
,
unk1
,
unk2
,
unk3
,
unk4
,
unk5
);
return
NULL
;
}
/*********************************************************************
* _vswprintf_p (MSVCR90.@)
*/
int
CDECL
MSVCR90__vswprintf_p
(
wchar_t
*
buffer
,
size_t
length
,
const
wchar_t
*
format
,
__ms_va_list
args
)
{
return
_vswprintf_p_l
(
buffer
,
length
,
format
,
NULL
,
args
);
}
dlls/msvcr90/msvcr90.spec
View file @
af6fd252
...
...
@@ -1107,7 +1107,7 @@
@ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c
@ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l
@ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l
@ cdecl _vswprintf_p(ptr long wstr ptr)
msvcrt._vswprintf
@ cdecl _vswprintf_p(ptr long wstr ptr)
MSVCR90__vswprintf_p
@ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l
@ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l
@ stub _vwprintf_l
...
...
dlls/msvcrt/wcs.c
View file @
af6fd252
...
...
@@ -709,7 +709,7 @@ int CDECL MSVCRT_vswprintf_p_l(MSVCRT_wchar_t *buffer, MSVCRT_size_t length,
*
MSVCRT__errno
()
=
MSVCRT_EINVAL
;
return
ret
;
}
else
if
(
ret
==
0
)
ret
=
pf_printf_w
(
puts_clbk_str_w
,
&
puts_ctx
,
format
,
locale
,
TRU
E
,
TRUE
,
ret
=
pf_printf_w
(
puts_clbk_str_w
,
&
puts_ctx
,
format
,
locale
,
FALS
E
,
TRUE
,
arg_clbk_valist
,
NULL
,
&
args
);
else
ret
=
pf_printf_w
(
puts_clbk_str_w
,
&
puts_ctx
,
format
,
locale
,
TRUE
,
TRUE
,
...
...
include/msvcrt/stdio.h
View file @
af6fd252
...
...
@@ -191,6 +191,7 @@ int __cdecl _snwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,...);
int
__cdecl
_vscwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vswprintf_p_l
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
_locale_t
,
__ms_va_list
);
FILE
*
__cdecl
_wfdopen
(
int
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfopen
(
const
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
_wfopen_s
(
FILE
**
,
const
wchar_t
*
,
const
wchar_t
*
);
...
...
include/msvcrt/wchar.h
View file @
af6fd252
...
...
@@ -322,6 +322,7 @@ int __cdecl _snwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,...);
int
__cdecl
_vscwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vswprintf_p_l
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
_locale_t
,
__ms_va_list
);
FILE
*
__cdecl
_wfdopen
(
int
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfopen
(
const
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
_wfopen_s
(
FILE
**
,
const
wchar_t
*
,
const
wchar_t
*
);
...
...
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