msvcrt: Added _getc_nolock implementation.

oldstable
Iván Matellanes 2014-11-05 22:55:44 +01:00 committed by Alexandre Julliard
parent e385df0b8e
commit caedfc8954
6 changed files with 6 additions and 4 deletions

View File

@ -888,7 +888,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@ stub _getc_nolock
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()

View File

@ -1236,7 +1236,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@ stub _getc_nolock
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()

View File

@ -1234,7 +1234,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@ stub _getc_nolock
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()

View File

@ -562,6 +562,7 @@
@ stub _get_winminor
@ stub _get_winver
@ cdecl _get_wpgmptr(ptr)
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()

View File

@ -539,7 +539,7 @@
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ cdecl _get_unexpected() MSVCRT__get_unexpected
@ cdecl _get_wpgmptr(ptr)
@ stub _getc_nolock
@ cdecl _getc_nolock(ptr) MSVCRT__fgetc_nolock
@ cdecl _getch()
@ stub _getch_nolock
@ cdecl _getche()

View File

@ -137,6 +137,7 @@ int __cdecl _fseek_nolock(FILE*,__msvcrt_long,int);
int __cdecl _fseeki64_nolock(FILE*,__int64,int);
__msvcrt_long __cdecl _ftell_nolock(FILE*);
__int64 __cdecl _ftelli64_nolock(FILE*);
int __cdecl _getc_nolock(FILE*);
int __cdecl _ungetc_nolock(int,FILE*);
void __cdecl clearerr(FILE*);