msvcrt: Added _getptd implementation.
This commit is contained in:
parent
abb3db5c57
commit
6e777041b2
|
@ -708,7 +708,7 @@
|
||||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||||
@ cdecl _getpid() msvcrt._getpid
|
@ cdecl _getpid() msvcrt._getpid
|
||||||
@ stub _getptd
|
@ cdecl _getptd() msvcrt._getptd
|
||||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||||
@ cdecl _getw(ptr) msvcrt._getw
|
@ cdecl _getw(ptr) msvcrt._getw
|
||||||
@ stub _getwch
|
@ stub _getwch
|
||||||
|
|
|
@ -555,7 +555,7 @@
|
||||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||||
@ cdecl _getpid() msvcrt._getpid
|
@ cdecl _getpid() msvcrt._getpid
|
||||||
@ stub _getptd
|
@ cdecl _getptd() msvcrt._getptd
|
||||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||||
@ cdecl _getw(ptr) msvcrt._getw
|
@ cdecl _getw(ptr) msvcrt._getw
|
||||||
@ stub _getwch
|
@ stub _getwch
|
||||||
|
|
|
@ -543,7 +543,7 @@
|
||||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||||
@ cdecl _getpid() msvcrt._getpid
|
@ cdecl _getpid() msvcrt._getpid
|
||||||
@ stub _getptd
|
@ cdecl _getptd() msvcrt._getptd
|
||||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||||
@ cdecl _getw(ptr) msvcrt._getw
|
@ cdecl _getw(ptr) msvcrt._getw
|
||||||
@ stub _getwch
|
@ stub _getwch
|
||||||
|
|
|
@ -1502,3 +1502,4 @@
|
||||||
@ cdecl _wdupenv_s(ptr ptr wstr)
|
@ cdecl _wdupenv_s(ptr ptr wstr)
|
||||||
@ cdecl _get_printf_count_output()
|
@ cdecl _get_printf_count_output()
|
||||||
@ cdecl _set_printf_count_output(long)
|
@ cdecl _set_printf_count_output(long)
|
||||||
|
@ cdecl _getptd()
|
||||||
|
|
|
@ -159,3 +159,12 @@ void CDECL _endthreadex(
|
||||||
/* FIXME */
|
/* FIXME */
|
||||||
ExitThread(retval);
|
ExitThread(retval);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* _getptd - not exported in native msvcrt
|
||||||
|
*/
|
||||||
|
thread_data_t* CDECL _getptd(void)
|
||||||
|
{
|
||||||
|
FIXME("returns undocumented/not fully filled data\n");
|
||||||
|
return msvcrt_get_thread_data();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue