mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS WDM Streaming ActiveMovie Proxy
|
|
* FILE: dll/directx/ksproxy/proxy.cpp
|
|
* PURPOSE: IKsProxy interface
|
|
*
|
|
* PROGRAMMERS: Johannes Anderwald ([email protected])
|
|
*/
|
|
#include "precomp.h"
|
|
|
|
/*
|
|
Needs IKsClock, IKsNotifyEvent
|
|
*/
|
|
|
|
class CKsProxy : public IBaseFilter,
|
|
public IAMovieSetup,
|
|
public IPersistStream,
|
|
public ISpecifyPropertyPages,
|
|
public IPersistPropertyBag,
|
|
public IReferenceClock,
|
|
public IMediaSeeking,
|
|
public IKsObject,
|
|
public IKsPropertySet,
|
|
public IKsClockPropertySet,
|
|
public IAMFilterMiscFlags,
|
|
public IKsControl,
|
|
public IKsTopology,
|
|
public IKsAggregateControl,
|
|
public IAMDeviceRemoval
|
|
{
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT
|
|
WINAPI
|
|
CKsProxy_Constructor(
|
|
IUnknown * pUnkOuter,
|
|
REFIID riid,
|
|
LPVOID * ppv)
|
|
{
|
|
OutputDebugString("CKsProxy_Constructor UNIMPLEMENTED\n");
|
|
return E_NOTIMPL;
|
|
}
|