Commit 6017d333 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

include: Move __acrt_iob_func declaration to corecrt_wstdio.h.

parent f396d80d
......@@ -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*);
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment