Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
825 B

  1. //------------------------------------------------------------------------------
  2. // File: SeekPT.h
  3. //
  4. // Desc: DirectShow base classes.
  5. //
  6. // Copyright (c) 1992-2001 Microsoft Corporation. All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #ifndef __seekpt_h__
  9. #define __seekpt_h__
  10. class CSeekingPassThru : public ISeekingPassThru, public CUnknown
  11. {
  12. public:
  13. static CUnknown *CreateInstance(LPUNKNOWN pUnk, HRESULT *phr);
  14. CSeekingPassThru(TCHAR *pName, LPUNKNOWN pUnk, HRESULT *phr);
  15. ~CSeekingPassThru();
  16. DECLARE_IUNKNOWN;
  17. STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void ** ppv);
  18. STDMETHODIMP Init(BOOL bSupportRendering, IPin *pPin);
  19. private:
  20. CPosPassThru *m_pPosPassThru;
  21. };
  22. #endif