Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-06-01 20:47:06 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-06-19 00:18:20 +0400
commit7dc747e4d3a0043c863583475ec49e4be4c260ca (patch)
tree974b9ddd765b5333f2fd235bfeb1a61ebfdbc9a3 /src/SubPic/SubPicQueueImpl.h
parentc5fb9c73b7f622300cf5d36346fdf8872d79cf2b (diff)
Use "PURE" instead of "= 0" for COM interfaces.
Diffstat (limited to 'src/SubPic/SubPicQueueImpl.h')
-rw-r--r--src/SubPic/SubPicQueueImpl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SubPic/SubPicQueueImpl.h b/src/SubPic/SubPicQueueImpl.h
index 2b8c1040e..468918d1a 100644
--- a/src/SubPic/SubPicQueueImpl.h
+++ b/src/SubPic/SubPicQueueImpl.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -52,11 +52,11 @@ public:
STDMETHODIMP SetFPS(double fps);
STDMETHODIMP SetTime(REFERENCE_TIME rtNow);
/*
- STDMETHODIMP Invalidate(REFERENCE_TIME rtInvalidate = -1) = 0;
- STDMETHODIMP_(bool) LookupSubPic(REFERENCE_TIME rtNow, ISubPic** ppSubPic) = 0;
+ STDMETHODIMP Invalidate(REFERENCE_TIME rtInvalidate = -1) PURE;
+ STDMETHODIMP_(bool) LookupSubPic(REFERENCE_TIME rtNow, ISubPic** ppSubPic) PURE;
- STDMETHODIMP GetStats(int& nSubPics, REFERENCE_TIME& rtNow, REFERENCE_TIME& rtStart, REFERENCE_TIME& rtStop) = 0;
- STDMETHODIMP GetStats(int nSubPics, REFERENCE_TIME& rtStart, REFERENCE_TIME& rtStop) = 0;
+ STDMETHODIMP GetStats(int& nSubPics, REFERENCE_TIME& rtNow, REFERENCE_TIME& rtStart, REFERENCE_TIME& rtStop) PURE;
+ STDMETHODIMP GetStats(int nSubPics, REFERENCE_TIME& rtStart, REFERENCE_TIME& rtStop) PURE;
*/
};