msvcrt: Added _getwc_nolock implementation.
This commit is contained in:
parent
caedfc8954
commit
fb4248315f
|
@ -906,6 +906,7 @@
|
|||
@ cdecl _getptd()
|
||||
@ stub _getsystime(ptr)
|
||||
@ cdecl _getw(ptr) MSVCRT__getw
|
||||
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
|
||||
@ stub _getwch
|
||||
@ stub _getwch_nolock
|
||||
@ stub _getwche
|
||||
|
|
|
@ -1253,6 +1253,7 @@
|
|||
@ cdecl _getptd()
|
||||
@ stub _getsystime(ptr)
|
||||
@ cdecl _getw(ptr) MSVCRT__getw
|
||||
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
|
||||
@ stub _getwch
|
||||
@ stub _getwch_nolock
|
||||
@ stub _getwche
|
||||
|
|
|
@ -1251,6 +1251,7 @@
|
|||
@ cdecl _getptd()
|
||||
@ stub _getsystime(ptr)
|
||||
@ cdecl _getw(ptr) MSVCRT__getw
|
||||
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
|
||||
@ stub _getwch
|
||||
@ stub _getwch_nolock
|
||||
@ stub _getwche
|
||||
|
|
|
@ -580,6 +580,7 @@
|
|||
@ cdecl _getptd()
|
||||
@ stub _getsystime(ptr)
|
||||
@ cdecl _getw(ptr) MSVCRT__getw
|
||||
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
|
||||
@ stub _getwch
|
||||
@ stub _getwch_nolock
|
||||
@ stub _getwche
|
||||
|
|
|
@ -557,6 +557,7 @@
|
|||
@ cdecl _getptd()
|
||||
@ stub _getsystime(ptr)
|
||||
@ cdecl _getw(ptr) MSVCRT__getw
|
||||
@ cdecl _getwc_nolock(ptr) MSVCRT__fgetwc_nolock
|
||||
@ stub _getwch
|
||||
@ stub _getwch_nolock
|
||||
@ stub _getwche
|
||||
|
|
|
@ -203,6 +203,7 @@ wint_t __cdecl _fgetwc_nolock(FILE*);
|
|||
wint_t __cdecl _fgetwchar(void);
|
||||
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*);
|
||||
int __cdecl _putws(const wchar_t*);
|
||||
int __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);
|
||||
|
|
Loading…
Reference in New Issue