kernel32: Add stub for SetThreadStackGuarantee.
This commit is contained in:
parent
2ed97ebe43
commit
5e5b435e7d
|
@ -1160,6 +1160,7 @@
|
|||
@ stdcall SetThreadPreferredUILanguages(long ptr ptr)
|
||||
@ stdcall SetThreadPriority(long long)
|
||||
@ stdcall SetThreadPriorityBoost(long long)
|
||||
@ stdcall SetThreadStackGuarantee(ptr)
|
||||
@ stdcall SetThreadUILanguage(long)
|
||||
@ stdcall SetTimeZoneInformation(ptr)
|
||||
@ stub SetTimerQueueTimer
|
||||
|
|
|
@ -372,6 +372,16 @@ BOOL WINAPI SetThreadPriorityBoost(
|
|||
}
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* SetThreadStackGuarantee (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize)
|
||||
{
|
||||
FIXME("(%p): stub\n", stacksize);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* SetThreadAffinityMask (KERNEL32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue