strmbase: Remove duplicate 'const' in strmbase.h.

This commit is contained in:
Michael Stefaniuc 2010-11-03 00:59:04 +01:00 committed by Alexandre Julliard
parent 661a8f3787
commit ac45ab3d8f
2 changed files with 2 additions and 2 deletions

View file

@ -136,7 +136,7 @@ static HRESULT SetupRegisterAllClasses(const FactoryTemplate * pList, int num,
return hr;
}
HRESULT WINAPI AMovieSetupRegisterFilter2( const AMOVIESETUP_FILTER const * pFilter, IFilterMapper2 *pIFM2, BOOL bRegister)
HRESULT WINAPI AMovieSetupRegisterFilter2(const AMOVIESETUP_FILTER *pFilter, IFilterMapper2 *pIFM2, BOOL bRegister)
{
if (!pFilter)
return S_OK;

View file

@ -311,7 +311,7 @@ typedef struct tagFactoryTemplate {
} FactoryTemplate;
HRESULT WINAPI AMovieDllRegisterServer2(BOOL bRegister);
HRESULT WINAPI AMovieSetupRegisterFilter2( const AMOVIESETUP_FILTER const * pFilter, IFilterMapper2 *pIFM2, BOOL bRegister);
HRESULT WINAPI AMovieSetupRegisterFilter2(const AMOVIESETUP_FILTER *pFilter, IFilterMapper2 *pIFM2, BOOL bRegister);
/* Dll Functions */
BOOL WINAPI STRMBASE_DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv);