Daniel Jelinski : kernel32: Make SetThreadStackGuarantee stub return TRUE.

Alexandre Julliard julliard at winehq.org
Fri Jun 1 13:25:59 CDT 2012


Module: wine
Branch: master
Commit: 53b551440cdf9f79cd56ac7b7cca267f0f6916b3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=53b551440cdf9f79cd56ac7b7cca267f0f6916b3

Author: Daniel Jelinski <djelinski1 at gmail.com>
Date:   Thu May 31 21:43:23 2012 +0200

kernel32: Make SetThreadStackGuarantee stub return TRUE.

---

 dlls/kernel32/thread.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel32/thread.c b/dlls/kernel32/thread.c
index bdaaee8..c56e1d3 100644
--- a/dlls/kernel32/thread.c
+++ b/dlls/kernel32/thread.c
@@ -378,8 +378,7 @@ BOOL WINAPI SetThreadPriorityBoost(
 BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize)
 {
     FIXME("(%p): stub\n", stacksize);
-    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
-    return FALSE;
+    return TRUE;
 }
 
 /**********************************************************************




More information about the wine-cvs mailing list