qcap: Define a real DllGetClassObject function.
This commit is contained in:
parent
850be4da8c
commit
6b746e196c
|
@ -1,4 +1,4 @@
|
||||||
@ stdcall -private DllCanUnloadNow()
|
@ stdcall -private DllCanUnloadNow()
|
||||||
@ stdcall -private DllGetClassObject(ptr ptr ptr) STRMBASE_DllGetClassObject
|
@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
||||||
@ stdcall -private DllRegisterServer()
|
@ stdcall -private DllRegisterServer()
|
||||||
@ stdcall -private DllUnregisterServer()
|
@ stdcall -private DllUnregisterServer()
|
||||||
|
|
|
@ -155,6 +155,14 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
||||||
return STRMBASE_DllMain(hInstDLL,fdwReason,lpv);
|
return STRMBASE_DllMain(hInstDLL,fdwReason,lpv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DllGetClassObject
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||||||
|
{
|
||||||
|
return STRMBASE_DllGetClassObject( rclsid, riid, ppv );
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllRegisterServer (QCAP.@)
|
* DllRegisterServer (QCAP.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue