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
add7409c
Commit
add7409c
authored
Feb 20, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stdio.h: Add ucrt _vsprintf_p_l declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
84778f15
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
stdio.h
include/msvcrt/stdio.h
+8
-1
No files found.
include/msvcrt/stdio.h
View file @
add7409c
...
...
@@ -88,7 +88,6 @@ int WINAPIV _snprintf_s(char*,size_t,size_t,const char*,...);
char
*
__cdecl
_tempnam
(
const
char
*
,
const
char
*
);
int
__cdecl
_unlink
(
const
char
*
);
int
WINAPIV
_scprintf
(
const
char
*
,...);
int
__cdecl
_vsprintf_p_l
(
char
*
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
size_t
__cdecl
_fread_nolock
(
void
*
,
size_t
,
size_t
,
FILE
*
);
size_t
__cdecl
_fread_nolock_s
(
void
*
,
size_t
,
size_t
,
size_t
,
FILE
*
);
...
...
@@ -165,6 +164,7 @@ unsigned int __cdecl _set_output_format(void);
#ifdef _UCRT
_ACRTIMP
int
__cdecl
__stdio_common_vsprintf
(
unsigned
__int64
,
char
*
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
__stdio_common_vsprintf_p
(
unsigned
__int64
,
char
*
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
__stdio_common_vsprintf_s
(
unsigned
__int64
,
char
*
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
__stdio_common_vsnprintf_s
(
unsigned
__int64
,
char
*
,
size_t
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
...
...
@@ -208,10 +208,17 @@ static inline int __cdecl vsprintf_s(char *buffer, const char *format, __ms_va_l
return
ret
<
0
?
-
1
:
ret
;
}
static
inline
int
__cdecl
_vsprintf_p_l
(
char
*
buffer
,
size_t
size
,
const
char
*
format
,
_locale_t
locale
,
__ms_va_list
args
)
{
int
ret
=
__stdio_common_vsprintf_p
(
_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS
,
buffer
,
size
,
format
,
locale
,
args
);
return
ret
<
0
?
-
1
:
ret
;
}
#else
/* _UCRT */
_ACRTIMP
int
__cdecl
_vscprintf
(
const
char
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
_vsnprintf_s
(
char
*
,
size_t
,
size_t
,
const
char
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
_vsprintf_p_l
(
char
*
,
size_t
,
const
char
*
,
_locale_t
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vsprintf
(
char
*
,
const
char
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vsprintf_s
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
...
...
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