Commit a0789f61 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ddraw: Simplify DllCanUnloadNow().

parent c68f2148
...@@ -743,14 +743,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) ...@@ -743,14 +743,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
*/ */
HRESULT WINAPI DllCanUnloadNow(void) HRESULT WINAPI DllCanUnloadNow(void)
{ {
HRESULT hr; return S_FALSE;
FIXME("(void): stub\n");
EnterCriticalSection(&ddraw_cs);
hr = S_FALSE;
LeaveCriticalSection(&ddraw_cs);
return hr;
} }
/******************************************************************************* /*******************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment