Fix duplication of _Getnames and _Gettnames, only the latter actually
exists.
This commit is contained in:
parent
5c1ffddb88
commit
dcad0864bb
|
@ -490,9 +490,9 @@ const char* _Getmonths(void)
|
|||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _Getnames (MSVCRT.@)
|
||||
* _Gettnames (MSVCRT.@)
|
||||
*/
|
||||
const char* _Getnames(void)
|
||||
const char* _Gettnames(void)
|
||||
{
|
||||
/* FIXME: */
|
||||
TRACE("(void) stub\n");
|
||||
|
@ -594,12 +594,3 @@ void __lconv_init(void)
|
|||
{
|
||||
FIXME(" stub\n");
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _Gettnames (MSVCRT.@)
|
||||
*/
|
||||
void *_Gettnames(void)
|
||||
{
|
||||
FIXME("(void), stub!\n");
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
@ cdecl -i386 -norelay _EH_prolog()
|
||||
@ cdecl _Getdays()
|
||||
@ cdecl _Getmonths()
|
||||
@ cdecl _Getnames()
|
||||
@ cdecl _Gettnames()
|
||||
@ extern _HUGE MSVCRT__HUGE
|
||||
@ cdecl _Strftime(str long str ptr ptr)
|
||||
@ cdecl _XcptFilter(long ptr)
|
||||
|
@ -762,5 +762,4 @@
|
|||
@ cdecl wctomb(ptr long) MSVCRT_wctomb
|
||||
@ varargs wprintf(wstr) MSVCRT_wprintf
|
||||
@ varargs wscanf(wstr) MSVCRT_wscanf
|
||||
@ cdecl _Gettnames() _Gettnames
|
||||
# extern __lc_collate_cp
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
|
||||
@ cdecl _Getdays() msvcrt._Getdays
|
||||
@ cdecl _Getmonths() msvcrt._Getmonths
|
||||
@ cdecl _Getnames() msvcrt._Getnames
|
||||
@ cdecl _Gettnames() msvcrt._Gettnames
|
||||
@ extern _HUGE msvcrt._HUGE
|
||||
@ cdecl _Strftime(str long str ptr ptr) msvcrt._Strftime
|
||||
@ cdecl _XcptFilter(long ptr) msvcrt._XcptFilter
|
||||
|
@ -792,4 +792,3 @@
|
|||
@ cdecl wctomb(ptr long) msvcrt.wctomb
|
||||
@ varargs wprintf(wstr) msvcrt.wprintf
|
||||
@ varargs wscanf(wstr) msvcrt.wscanf
|
||||
@ cdecl _Gettnames() msvcrt._Gettnames
|
||||
|
|
Loading…
Reference in New Issue