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
6017d333
Commit
6017d333
authored
Feb 20, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Move __acrt_iob_func declaration to corecrt_wstdio.h.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f396d80d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
corecrt_wstdio.h
include/msvcrt/corecrt_wstdio.h
+6
-0
stdio.h
include/msvcrt/stdio.h
+0
-6
No files found.
include/msvcrt/corecrt_wstdio.h
View file @
6017d333
...
...
@@ -41,6 +41,12 @@ typedef struct _iobuf
#define WEOF (wint_t)(0xFFFF)
#endif
FILE
*
__cdecl
__acrt_iob_func
(
unsigned
index
);
#define stdin (__acrt_iob_func(0))
#define stdout (__acrt_iob_func(1))
#define stderr (__acrt_iob_func(2))
wint_t
__cdecl
_fgetwc_nolock
(
FILE
*
);
wint_t
__cdecl
_fgetwchar
(
void
);
wint_t
__cdecl
_fputwc_nolock
(
wint_t
,
FILE
*
);
...
...
include/msvcrt/stdio.h
View file @
6017d333
...
...
@@ -61,12 +61,6 @@ FILE* __cdecl __iob_func(void);
# endif
#endif
/* _STDIO_DEFINED */
FILE
*
__cdecl
__acrt_iob_func
(
unsigned
index
);
#define stdin (__acrt_iob_func(0))
#define stdout (__acrt_iob_func(1))
#define stderr (__acrt_iob_func(2))
/* return value for _get_output_format */
#define _TWO_DIGIT_EXPONENT 0x1
...
...
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