mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
msvcrt: Implemented _putwch.
This commit is contained in:
parent
83d87f3b13
commit
d36cfcf48a
@ -1037,7 +1037,7 @@
|
||||
@ cdecl _putenv(str) msvcrt._putenv
|
||||
@ cdecl _putenv_s(str str) msvcrt._putenv_s
|
||||
@ cdecl _putw(long ptr) msvcrt._putw
|
||||
@ stub _putwch
|
||||
@ cdecl _putwch(long) msvcrt._putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) msvcrt._putws
|
||||
@ stub _pwctype
|
||||
|
@ -885,7 +885,7 @@
|
||||
@ cdecl _putenv(str) msvcrt._putenv
|
||||
@ cdecl _putenv_s(str str) msvcrt._putenv_s
|
||||
@ cdecl _putw(long ptr) msvcrt._putw
|
||||
@ stub _putwch
|
||||
@ cdecl _putwch(long) msvcrt._putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) msvcrt._putws
|
||||
@ stub _pwctype
|
||||
|
@ -871,7 +871,7 @@
|
||||
@ cdecl _putenv(str) msvcrt._putenv
|
||||
@ cdecl _putenv_s(str str) msvcrt._putenv_s
|
||||
@ cdecl _putw(long ptr) msvcrt._putw
|
||||
@ stub _putwch
|
||||
@ cdecl _putwch(long) msvcrt._putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) msvcrt._putws
|
||||
@ stub _pwctype
|
||||
|
@ -3129,6 +3129,14 @@ int CDECL MSVCRT_putchar(int c)
|
||||
return MSVCRT_fputc(c, MSVCRT_stdout);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _putwch (MSVCRT.@)
|
||||
*/
|
||||
int CDECL MSVCRT__putwch(int c)
|
||||
{
|
||||
return MSVCRT_fputwc(c, MSVCRT_stdout);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* puts (MSVCRT.@)
|
||||
*/
|
||||
|
@ -819,7 +819,7 @@
|
||||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
# stub _putwch
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ cdecl _putws(wstr)
|
||||
# extern _pwctype
|
||||
@ cdecl _read(long ptr long) MSVCRT__read
|
||||
|
Loading…
Reference in New Issue
Block a user