kernel32: Add a stub implementation of GetThreadIOPendingFlag.
This commit is contained in:
parent
d3f456d146
commit
06562d16b3
|
@ -649,7 +649,7 @@
|
|||
@ stdcall GetThreadContext(long ptr)
|
||||
@ stdcall GetThreadErrorMode()
|
||||
@ stdcall GetThreadId(ptr)
|
||||
# @ stub GetThreadIOPendingFlag
|
||||
@ stdcall GetThreadIOPendingFlag(long ptr)
|
||||
@ stdcall GetThreadLocale()
|
||||
@ stdcall GetThreadPriority(long)
|
||||
@ stdcall GetThreadPriorityBoost(long ptr)
|
||||
|
|
|
@ -796,3 +796,13 @@ LANGID WINAPI GetThreadUILanguage( void )
|
|||
FIXME(": stub, returning default language.\n");
|
||||
return lang;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetThreadIOPendingFlag (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI GetThreadIOPendingFlag( HANDLE thread, PBOOL io_pending )
|
||||
{
|
||||
FIXME("%p, %p\n", thread, io_pending);
|
||||
*io_pending = FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -1775,6 +1775,7 @@ WINBASEAPI DWORD WINAPI GetTempPathA(DWORD,LPSTR);
|
|||
WINBASEAPI DWORD WINAPI GetTempPathW(DWORD,LPWSTR);
|
||||
#define GetTempPath WINELIB_NAME_AW(GetTempPath)
|
||||
WINBASEAPI DWORD WINAPI GetThreadId(HANDLE);
|
||||
WINBASEAPI BOOL WINAPI GetThreadIOPendingFlag(HANDLE,PBOOL);
|
||||
WINBASEAPI DWORD WINAPI GetTickCount(void);
|
||||
WINBASEAPI ULONGLONG WINAPI GetTickCount64(void);
|
||||
WINBASEAPI DWORD WINAPI GetTimeZoneInformation(LPTIME_ZONE_INFORMATION);
|
||||
|
|
Loading…
Reference in New Issue