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

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2017-07-24 21:32:00 +0300
committerKacper Michajłow <kasper93@gmail.com>2017-07-24 21:32:00 +0300
commit23dc44ced5382b19781a1bdf131bc2e8678aeb87 (patch)
tree745008e8dd56dc849e2ff4bf153d7bf5aed52bb6
parent6e15815508da140ccb9833c1b54ec949646856e0 (diff)
Revert "Don't expose ISpecifyPropertyPages in MyFilter"mpc-hc-1.7.13-1
This reverts commit 4aa2f2fb2ea98b3197c621a965cf91bd9b93cae0.
-rw-r--r--src/MyFilter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/MyFilter.cpp b/src/MyFilter.cpp
index e70e054..27d5cc7 100644
--- a/src/MyFilter.cpp
+++ b/src/MyFilter.cpp
@@ -68,6 +68,9 @@ namespace SaneAudioRenderer
if (riid == __uuidof(ISpecifyPropertyPages2))
return GetInterface(static_cast<ISpecifyPropertyPages2*>(this), ppv);
+ if (riid == IID_ISpecifyPropertyPages)
+ return GetInterface(static_cast<ISpecifyPropertyPages*>(this), ppv);
+
if (riid == __uuidof(IStatusPageData))
return GetInterface(static_cast<IStatusPageData*>(this), ppv);