summaryrefslogtreecommitdiffstats
path: root/thirdparties/win32/include/directshow/seekpt.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparties/win32/include/directshow/seekpt.h')
-rw-r--r--thirdparties/win32/include/directshow/seekpt.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/thirdparties/win32/include/directshow/seekpt.h b/thirdparties/win32/include/directshow/seekpt.h
new file mode 100644
index 0000000..93b7061
--- /dev/null
+++ b/thirdparties/win32/include/directshow/seekpt.h
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+// File: SeekPT.h
+//
+// Desc: DirectShow base classes.
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+
+#ifndef __seekpt_h__
+#define __seekpt_h__
+
+
+class CSeekingPassThru : public ISeekingPassThru, public CUnknown
+{
+public:
+ static CUnknown *CreateInstance(LPUNKNOWN pUnk, HRESULT *phr);
+ CSeekingPassThru(TCHAR *pName, LPUNKNOWN pUnk, HRESULT *phr);
+ ~CSeekingPassThru();
+
+ DECLARE_IUNKNOWN;
+ STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void ** ppv);
+
+ STDMETHODIMP Init(BOOL bSupportRendering, IPin *pPin);
+
+private:
+ CPosPassThru *m_pPosPassThru;
+};
+
+#endif
OpenPOWER on IntegriCloud