Module: wine Branch: master Commit: 0be5ad8ece66a1c7c3e66710139a4ead033c87c7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0be5ad8ece66a1c7c3e6671013...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Nov 21 22:27:24 2012 +0100
msisys.ocx: "Fix" DllCanUnloadNow() implementation.
---
dlls/msisys.ocx/msisys.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msisys.ocx/msisys.c b/dlls/msisys.ocx/msisys.c index 3863fba..056699e 100644 --- a/dlls/msisys.ocx/msisys.c +++ b/dlls/msisys.ocx/msisys.c @@ -87,7 +87,7 @@ BOOL WINAPI DllMain( */ HRESULT WINAPI DllCanUnloadNow(void) { - return S_OK; + return S_FALSE; }
/***********************************************************************