kernel32: Add stub for SetThreadStackGuarantee.

This commit is contained in:
André Hentschel 2012-05-28 14:18:09 +02:00 committed by Alexandre Julliard
parent 2ed97ebe43
commit 5e5b435e7d
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -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.@)
*/