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
2a74488f
Commit
2a74488f
authored
Feb 25, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corecrt_wstdio.h: Add ucrt wprintf_s and vwprintf_s declarations.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
364baf5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
corecrt_wstdio.h
include/msvcrt/corecrt_wstdio.h
+18
-2
No files found.
include/msvcrt/corecrt_wstdio.h
View file @
2a74488f
...
...
@@ -79,8 +79,6 @@ wint_t __cdecl putwc(wint_t,FILE*);
wint_t
__cdecl
putwchar
(
wint_t
);
int
__cdecl
putws
(
const
wchar_t
*
);
wint_t
__cdecl
ungetwc
(
wint_t
,
FILE
*
);
int
__cdecl
vwprintf_s
(
const
wchar_t
*
,
__ms_va_list
);
int
WINAPIV
wprintf_s
(
const
wchar_t
*
,...);
int
WINAPIV
wscanf
(
const
wchar_t
*
,...);
int
WINAPIV
wscanf_s
(
const
wchar_t
*
,...);
...
...
@@ -261,6 +259,22 @@ static inline int WINAPIV wprintf(const wchar_t *format, ...)
return
ret
;
}
static
inline
int
vwprintf_s
(
const
wchar_t
*
format
,
__ms_va_list
args
)
{
return
__stdio_common_vfwprintf_s
(
_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS
,
stdout
,
format
,
NULL
,
args
);
}
static
inline
int
WINAPIV
wprintf_s
(
const
wchar_t
*
format
,
...)
{
int
ret
;
__ms_va_list
args
;
__ms_va_start
(
args
,
format
);
ret
=
vfwprintf_s
(
stdout
,
format
,
args
);
__ms_va_end
(
args
);
return
ret
;
}
static
inline
int
WINAPIV
swscanf
(
const
wchar_t
*
buffer
,
const
wchar_t
*
format
,
...)
{
int
ret
;
...
...
@@ -322,7 +336,9 @@ _ACRTIMP int __cdecl vfwprintf(FILE*,const wchar_t*,__ms_va_list);
_ACRTIMP
int
__cdecl
vfwprintf_s
(
FILE
*
,
const
wchar_t
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vswprintf_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vwprintf
(
const
wchar_t
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vwprintf_s
(
const
wchar_t
*
,
__ms_va_list
);
_ACRTIMP
int
WINAPIV
wprintf
(
const
wchar_t
*
,...);
_ACRTIMP
int
WINAPIV
wprintf_s
(
const
wchar_t
*
,...);
#ifdef _CRT_NON_CONFORMING_SWPRINTFS
int
WINAPIV
swprintf
(
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