blob: e40b6b123e78043b1d722b1a26be3d4e71611292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
// pch.cpp: source file corresponding to the pre-compiled header
#include "pch.h"
// When you are using pre-compiled headers, this source file is necessary for compilation to succeed.
namespace winrt
{
template<> bool is_guid_of<IMFMediaSourceEx>(guid const& id) noexcept
{
return is_guid_of<IMFMediaSourceEx, IMFMediaSource, IMFMediaEventGenerator>(id);
}
template<> bool is_guid_of<IMFMediaStream2>(guid const& id) noexcept
{
return is_guid_of<IMFMediaStream2, IMFMediaStream, IMFMediaEventGenerator>(id);
}
template<> bool is_guid_of<IMFActivate>(guid const& id) noexcept
{
return is_guid_of<IMFActivate, IMFAttributes>(id);
}
}
|