msvcrt: Implemented _putwch.

This commit is contained in:
Eric Pouech 2010-11-02 22:03:22 +01:00 committed by Alexandre Julliard
parent 83d87f3b13
commit d36cfcf48a
5 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.@)
*/

View File

@ -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