ReactOS 0.4.16-dev-937-g7afcd2a
putwch.cpp File Reference
#include <conio.h>
#include <corecrt_internal_lowio.h>
#include <corecrt_internal_ptd_propagation.h>
Include dependency graph for putwch.cpp:

Go to the source code of this file.

Functions

wint_t __cdecl _putwch (wchar_t const c)
 
wint_t __cdecl _putwch_nolock (wchar_t const c)
 
wint_t __cdecl _putwch_nolock_internal (wchar_t const c, __crt_cached_ptd_host &)
 

Function Documentation

◆ _putwch()

wint_t __cdecl _putwch ( wchar_t const  c)

Definition at line 14 of file putwch.cpp.

15{
16 return __acrt_lock_and_call(__acrt_conio_lock, [&]
17 {
18 return _putwch_nolock(c);
19 });
20}
@ __acrt_conio_lock
const GLubyte * c
Definition: glext.h:8905
wint_t __cdecl _putwch_nolock(wchar_t const c)
Definition: putwch.cpp:22

◆ _putwch_nolock()

wint_t __cdecl _putwch_nolock ( wchar_t const  c)

Definition at line 22 of file putwch.cpp.

23{
25 return WEOF;
26
27 // Write character to console:
28 DWORD charsWritten;
29 if (__dcrt_write_console(&c, 1, &charsWritten) == FALSE)
30 return WEOF;
31
32 return c;
33}
#define FALSE
Definition: types.h:117
unsigned long DWORD
Definition: ntddk_ex.h:95
BOOL __cdecl __dcrt_lowio_ensure_console_output_initialized()
Definition: initcon.cpp:31
BOOL __cdecl __dcrt_write_console(_In_ void const *lpBuffer, _In_ DWORD nNumberOfCharsToWrite, _Out_ LPDWORD lpNumberOfCharsWritten)
Definition: initcon.cpp:67
#define c
Definition: ke_i.h:80
#define WEOF
Definition: conio.h:185

Referenced by _getwche_nolock(), _putch_nolock_internal(), _putwch(), _putwch_nolock_internal(), and write_double_translated_unicode_nolock().

◆ _putwch_nolock_internal()

wint_t __cdecl _putwch_nolock_internal ( wchar_t const  c,
__crt_cached_ptd_host &   
)

Definition at line 35 of file putwch.cpp.

36{
37 // Currently _putwch_nolock does not require any PTD access. Do not need to propagate __crt_cached_ptd_host&.
38 return _putwch_nolock(c);
39}