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
ca268b19
Commit
ca268b19
authored
May 03, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
May 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Make printf_arg arg_clbk_positional() and MSVCRT_wcsrtombs_s_l() static.
parent
87d76cc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
msvcrt.h
dlls/msvcrt/msvcrt.h
+0
-1
wcs.c
dlls/msvcrt/wcs.c
+2
-2
No files found.
dlls/msvcrt/msvcrt.h
View file @
ca268b19
...
...
@@ -933,7 +933,6 @@ int pf_printf_a(puts_clbk_a, void*, const char*, MSVCRT__locale_t,
int
pf_printf_w
(
puts_clbk_w
,
void
*
,
const
MSVCRT_wchar_t
*
,
MSVCRT__locale_t
,
BOOL
,
BOOL
,
args_clbk
,
void
*
,
__ms_va_list
);
printf_arg
arg_clbk_valist
(
void
*
,
int
,
int
,
__ms_va_list
*
);
printf_arg
arg_clbk_positional
(
void
*
,
int
,
int
,
__ms_va_list
*
);
#define MSVCRT__OVERFLOW 3
#define MSVCRT__UNDERFLOW 4
...
...
dlls/msvcrt/wcs.c
View file @
ca268b19
...
...
@@ -376,7 +376,7 @@ MSVCRT_size_t CDECL MSVCRT_wcsrtombs(char *mbstr, const MSVCRT_wchar_t **wcstr,
/*********************************************************************
* MSVCRT_wcsrtombs_s_l (INTERNAL)
*/
MSVCRT_size_t
CDECL
MSVCRT_wcsrtombs_s_l
(
MSVCRT_size_t
*
ret
,
char
*
mbstr
,
static
MSVCRT_size_t
MSVCRT_wcsrtombs_s_l
(
MSVCRT_size_t
*
ret
,
char
*
mbstr
,
MSVCRT_size_t
size
,
const
MSVCRT_wchar_t
**
wcstr
,
MSVCRT_size_t
count
,
MSVCRT__locale_t
locale
)
{
...
...
@@ -501,7 +501,7 @@ printf_arg arg_clbk_valist(void *ctx, int arg_pos, int type, __ms_va_list *valis
/*********************************************************************
* arg_clbk_positional (INTERNAL)
*/
printf_arg
arg_clbk_positional
(
void
*
ctx
,
int
pos
,
int
type
,
__ms_va_list
*
valist
)
static
printf_arg
arg_clbk_positional
(
void
*
ctx
,
int
pos
,
int
type
,
__ms_va_list
*
valist
)
{
printf_arg
*
args
=
ctx
;
return
args
[
pos
];
...
...
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