2001-08-28 19:25:39 +02:00
|
|
|
#ifndef WINE_DSHOW_FMAP_H
|
|
|
|
#define WINE_DSHOW_FMAP_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
implements CLSID_FilterMapper.
|
|
|
|
|
|
|
|
- At least, the following interfaces should be implemented:
|
|
|
|
|
|
|
|
IUnknown
|
|
|
|
+ IFilterMapper
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "iunk.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct FM_IFilterMapperImpl
|
|
|
|
{
|
|
|
|
ICOM_VFIELD(IFilterMapper);
|
|
|
|
} FM_IFilterMapperImpl;
|
|
|
|
|
|
|
|
typedef struct CFilterMapper
|
|
|
|
{
|
|
|
|
QUARTZ_IUnkImpl unk;
|
|
|
|
FM_IFilterMapperImpl fmap;
|
|
|
|
} CFilterMapper;
|
|
|
|
|
|
|
|
#define CFilterMapper_THIS(iface,member) CFilterMapper* This = ((CFilterMapper*)(((char*)iface)-offsetof(CFilterMapper,member)))
|
|
|
|
|
|
|
|
HRESULT QUARTZ_CreateFilterMapper(IUnknown* punkOuter,void** ppobj);
|
|
|
|
|
|
|
|
|
2001-09-07 21:46:49 +02:00
|
|
|
HRESULT CFilterMapper_InitIFilterMapper( CFilterMapper* pfm );
|
2001-08-28 19:25:39 +02:00
|
|
|
void CFilterMapper_UninitIFilterMapper( CFilterMapper* pfm );
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* WINE_DSHOW_FMAP_H */
|
|
|
|
|