kernel32: Make SetThreadStackGuarantee stub return TRUE.

This commit is contained in:
Daniel Jelinski 2012-05-31 21:43:23 +02:00 committed by Alexandre Julliard
parent d647bd108c
commit 53b551440c
1 changed files with 1 additions and 2 deletions

View File

@ -378,8 +378,7 @@ BOOL WINAPI SetThreadPriorityBoost(
BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize) BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize)
{ {
FIXME("(%p): stub\n", stacksize); FIXME("(%p): stub\n", stacksize);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return TRUE;
return FALSE;
} }
/********************************************************************** /**********************************************************************