msvcrt: Added _putwc_nolock implementation.
This commit is contained in:
parent
755a54b2a7
commit
0ad3537d68
|
@ -1238,6 +1238,7 @@
|
|||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
@ cdecl _putwc_nolock(long ptr) MSVCRT__fputwc_nolock
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) MSVCRT__putws
|
||||
|
|
|
@ -1596,6 +1596,7 @@
|
|||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
@ cdecl _putwc_nolock(long ptr) MSVCRT__fputwc_nolock
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) MSVCRT__putws
|
||||
|
|
|
@ -1604,6 +1604,7 @@
|
|||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
@ cdecl _putwc_nolock(long ptr) MSVCRT__fputwc_nolock
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) MSVCRT__putws
|
||||
|
|
|
@ -913,6 +913,7 @@
|
|||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
@ cdecl _putwc_nolock(long ptr) MSVCRT__fputwc_nolock
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) MSVCRT__putws
|
||||
|
|
|
@ -888,6 +888,7 @@
|
|||
@ cdecl _putenv(str)
|
||||
@ cdecl _putenv_s(str str)
|
||||
@ cdecl _putw(long ptr) MSVCRT__putw
|
||||
@ cdecl _putwc_nolock(long ptr) MSVCRT__fputwc_nolock
|
||||
@ cdecl _putwch(long) MSVCRT__putwch
|
||||
@ stub _putwch_nolock
|
||||
@ cdecl _putws(wstr) MSVCRT__putws
|
||||
|
|
|
@ -206,6 +206,7 @@ wint_t __cdecl _fputwc_nolock(wint_t,FILE*);
|
|||
wint_t __cdecl _fputwchar(wint_t);
|
||||
wint_t __cdecl _getwc_nolock(FILE*);
|
||||
wchar_t* __cdecl _getws(wchar_t*);
|
||||
wint_t __cdecl _putwc_nolock(wint_t,FILE*);
|
||||
int __cdecl _putws(const wchar_t*);
|
||||
int __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);
|
||||
int __cdecl _snwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,...);
|
||||
|
|
Loading…
Reference in New Issue