kernelbase: Implement GetThreadIdealProcessorEx stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48313 Signed-off-by: Roman Pišl <rpisl@seznam.cz> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c13d58780f
commit
b53e466794
|
@ -28,7 +28,7 @@
|
||||||
@ stdcall GetStartupInfoW(ptr) kernel32.GetStartupInfoW
|
@ stdcall GetStartupInfoW(ptr) kernel32.GetStartupInfoW
|
||||||
@ stdcall GetThreadContext(long ptr) kernel32.GetThreadContext
|
@ stdcall GetThreadContext(long ptr) kernel32.GetThreadContext
|
||||||
@ stdcall GetThreadId(ptr) kernel32.GetThreadId
|
@ stdcall GetThreadId(ptr) kernel32.GetThreadId
|
||||||
@ stub GetThreadIdealProcessorEx
|
@ stdcall GetThreadIdealProcessorEx(long ptr) kernel32.GetThreadIdealProcessorEx
|
||||||
@ stdcall GetThreadPriority(long) kernel32.GetThreadPriority
|
@ stdcall GetThreadPriority(long) kernel32.GetThreadPriority
|
||||||
@ stdcall GetThreadPriorityBoost(long ptr) kernel32.GetThreadPriorityBoost
|
@ stdcall GetThreadPriorityBoost(long ptr) kernel32.GetThreadPriorityBoost
|
||||||
@ stdcall GetThreadTimes(long ptr ptr ptr ptr) kernel32.GetThreadTimes
|
@ stdcall GetThreadTimes(long ptr ptr ptr ptr) kernel32.GetThreadTimes
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
@ stdcall GetThreadContext(long ptr) kernel32.GetThreadContext
|
@ stdcall GetThreadContext(long ptr) kernel32.GetThreadContext
|
||||||
@ stdcall GetThreadIOPendingFlag(long ptr) kernel32.GetThreadIOPendingFlag
|
@ stdcall GetThreadIOPendingFlag(long ptr) kernel32.GetThreadIOPendingFlag
|
||||||
@ stdcall GetThreadId(ptr) kernel32.GetThreadId
|
@ stdcall GetThreadId(ptr) kernel32.GetThreadId
|
||||||
@ stub GetThreadIdealProcessorEx
|
@ stdcall GetThreadIdealProcessorEx(long ptr) kernel32.GetThreadIdealProcessorEx
|
||||||
@ stub GetThreadInformation
|
@ stub GetThreadInformation
|
||||||
@ stdcall GetThreadPriority(long) kernel32.GetThreadPriority
|
@ stdcall GetThreadPriority(long) kernel32.GetThreadPriority
|
||||||
@ stdcall GetThreadPriorityBoost(long ptr) kernel32.GetThreadPriorityBoost
|
@ stdcall GetThreadPriorityBoost(long ptr) kernel32.GetThreadPriorityBoost
|
||||||
|
|
|
@ -853,7 +853,7 @@
|
||||||
@ stdcall -import GetThreadGroupAffinity(long ptr)
|
@ stdcall -import GetThreadGroupAffinity(long ptr)
|
||||||
@ stdcall -import GetThreadIOPendingFlag(long ptr)
|
@ stdcall -import GetThreadIOPendingFlag(long ptr)
|
||||||
@ stdcall -import GetThreadId(ptr)
|
@ stdcall -import GetThreadId(ptr)
|
||||||
# @ stub GetThreadIdealProcessorEx
|
@ stdcall -import GetThreadIdealProcessorEx(long ptr)
|
||||||
@ stdcall -import GetThreadLocale()
|
@ stdcall -import GetThreadLocale()
|
||||||
@ stdcall GetThreadPreferredUILanguages(long ptr ptr ptr)
|
@ stdcall GetThreadPreferredUILanguages(long ptr ptr ptr)
|
||||||
@ stdcall -import GetThreadPriority(long)
|
@ stdcall -import GetThreadPriority(long)
|
||||||
|
|
|
@ -716,7 +716,7 @@
|
||||||
@ stdcall GetThreadGroupAffinity(long ptr)
|
@ stdcall GetThreadGroupAffinity(long ptr)
|
||||||
@ stdcall GetThreadIOPendingFlag(long ptr)
|
@ stdcall GetThreadIOPendingFlag(long ptr)
|
||||||
@ stdcall GetThreadId(ptr)
|
@ stdcall GetThreadId(ptr)
|
||||||
# @ stub GetThreadIdealProcessorEx
|
@ stdcall GetThreadIdealProcessorEx(long ptr)
|
||||||
# @ stub GetThreadInformation
|
# @ stub GetThreadInformation
|
||||||
@ stdcall GetThreadLocale()
|
@ stdcall GetThreadLocale()
|
||||||
@ stdcall GetThreadPreferredUILanguages(long ptr ptr ptr) kernel32.GetThreadPreferredUILanguages
|
@ stdcall GetThreadPreferredUILanguages(long ptr ptr ptr) kernel32.GetThreadPreferredUILanguages
|
||||||
|
|
|
@ -245,6 +245,17 @@ DWORD WINAPI DECLSPEC_HOTPATCH GetThreadId( HANDLE thread )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* GetThreadIdealProcessorEx (kernelbase.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI /* DECLSPEC_HOTPATCH */ GetThreadIdealProcessorEx( HANDLE thread, PROCESSOR_NUMBER *ideal )
|
||||||
|
{
|
||||||
|
FIXME( "(%p %p): stub\n", thread, ideal );
|
||||||
|
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetThreadLocale (kernelbase.@)
|
* GetThreadLocale (kernelbase.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue