Added stubs for AmpFactorToDB and DBToAmpFactor.

Added GetProxyDllInfo.
This commit is contained in:
Christian Costa 2004-09-06 20:23:42 +00:00 committed by Alexandre Julliard
parent f2aff0ecd8
commit ece3e81e94
2 changed files with 18 additions and 2 deletions

View file

@ -250,3 +250,18 @@ const char * qzdebugstr_State(FILTER_STATE state)
return "State_Unknown";
}
}
LONG AmpFactorToDB(LONG ampfactor)
{
FIXME("(%ld) Stub!\n", ampfactor);
return 0;
}
LONG DBToAmpFactor(LONG db)
{
FIXME("(%ld) Stub!\n", db);
/* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */
if (db < -1000)
return 0;
return 100;
}

View file

@ -1,8 +1,9 @@
@ stub AMGetErrorTextA
@ stub AMGetErrorTextW
@ stub AmpFactorToDB
@ stub DBToAmpFactor
@ stdcall AmpFactorToDB(long)
@ stdcall DBToAmpFactor(long)
@ stdcall -private DllCanUnloadNow() QUARTZ_DllCanUnloadNow
@ stdcall -private DllGetClassObject(ptr ptr ptr) QUARTZ_DllGetClassObject
@ stdcall -private DllRegisterServer() QUARTZ_DllRegisterServer
@ stdcall -private DllUnregisterServer() QUARTZ_DllUnregisterServer
@ stub GetProxyDllInfo