mirror of
https://github.com/reactos/wine.git
synced 2025-02-09 21:55:12 +00:00
msvcrt: Added _getptd implementation.
This commit is contained in:
parent
abb3db5c57
commit
6e777041b2
@ -708,7 +708,7 @@
|
||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||
@ cdecl _getpid() msvcrt._getpid
|
||||
@ stub _getptd
|
||||
@ cdecl _getptd() msvcrt._getptd
|
||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||
@ cdecl _getw(ptr) msvcrt._getw
|
||||
@ stub _getwch
|
||||
|
@ -555,7 +555,7 @@
|
||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||
@ cdecl _getpid() msvcrt._getpid
|
||||
@ stub _getptd
|
||||
@ cdecl _getptd() msvcrt._getptd
|
||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||
@ cdecl _getw(ptr) msvcrt._getw
|
||||
@ stub _getwch
|
||||
|
@ -543,7 +543,7 @@
|
||||
@ cdecl _getmaxstdio() msvcrt._getmaxstdio
|
||||
@ cdecl _getmbcp() msvcrt._getmbcp
|
||||
@ cdecl _getpid() msvcrt._getpid
|
||||
@ stub _getptd
|
||||
@ cdecl _getptd() msvcrt._getptd
|
||||
@ cdecl _getsystime(ptr) msvcrt._getsystime
|
||||
@ cdecl _getw(ptr) msvcrt._getw
|
||||
@ stub _getwch
|
||||
|
@ -1502,3 +1502,4 @@
|
||||
@ cdecl _wdupenv_s(ptr ptr wstr)
|
||||
@ cdecl _get_printf_count_output()
|
||||
@ cdecl _set_printf_count_output(long)
|
||||
@ cdecl _getptd()
|
||||
|
@ -159,3 +159,12 @@ void CDECL _endthreadex(
|
||||
/* FIXME */
|
||||
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…
x
Reference in New Issue
Block a user