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
84778f15
Commit
84778f15
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_s declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a68c92d4
Hide 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 @
84778f15
...
...
@@ -159,13 +159,13 @@ int __cdecl vfprintf(FILE*,const char*,__ms_va_list);
int
__cdecl
vfprintf_s
(
FILE
*
,
const
char
*
,
__ms_va_list
);
int
__cdecl
vprintf
(
const
char
*
,
__ms_va_list
);
int
__cdecl
vprintf_s
(
const
char
*
,
__ms_va_list
);
int
__cdecl
vsprintf_s
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
unsigned
int
__cdecl
_get_output_format
(
void
);
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_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
);
static
inline
int
__cdecl
vsnprintf
(
char
*
buffer
,
size_t
size
,
const
char
*
format
,
__ms_va_list
args
)
...
...
@@ -202,11 +202,18 @@ static inline int __cdecl vsprintf(char *buffer, const char *format, __ms_va_lis
return
ret
<
0
?
-
1
:
ret
;
}
static
inline
int
__cdecl
vsprintf_s
(
char
*
buffer
,
const
char
*
format
,
__ms_va_list
args
)
{
int
ret
=
__stdio_common_vsprintf_s
(
_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS
,
buffer
,
-
1
,
format
,
NULL
,
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
(
char
*
,
const
char
*
,
__ms_va_list
);
_ACRTIMP
int
__cdecl
vsprintf_s
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
int
__cdecl
_vsnprintf
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
static
inline
int
vsnprintf
(
char
*
buffer
,
size_t
size
,
const
char
*
format
,
__ms_va_list
args
)
{
return
_vsnprintf
(
buffer
,
size
,
format
,
args
);
}
...
...
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