22 Nov
2012
22 Nov
'12
7:48 p.m.
Module: wine Branch: master Commit: 3131a9f831dcdc385bebbf226ae3ad6b28cc3f50 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3131a9f831dcdc385bebbf226a... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Wed Nov 21 22:29:55 2012 +0100 pstorec: "Fix" DllCanUnloadNow() implementation. --- dlls/pstorec/pstorec.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/pstorec/pstorec.c b/dlls/pstorec/pstorec.c index 0a6a6c1..4d7b691 100644 --- a/dlls/pstorec/pstorec.c +++ b/dlls/pstorec/pstorec.c @@ -394,5 +394,5 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv) HRESULT WINAPI DllCanUnloadNow(void) { - return S_OK; + return S_FALSE; }