Fix return code of DPNHPAST_DllGetClassObject stub.

This commit is contained in:
Marcus Meissner 2003-05-06 00:15:03 +00:00 committed by Alexandre Julliard
parent 8d54728696
commit 2aad01e2a8
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ HRESULT WINAPI DPNHPAST_DllCanUnloadNow(void)
HRESULT WINAPI DPNHPAST_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID FAR)
{
FIXME(":stub\n");
return S_OK;
return E_FAIL;
}