blob: d8aad5f5cad8424bdcd421de628c8f3e2b246bb8 (
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
|
/**************************************************************************
A/V Stream Camera Sample
Copyright (c) 2015, Microsoft Corporation.
File:
Mft0clsid.h
Abstract:
Define the Class GUID of the MFT.
History:
created 2/19/2015
**************************************************************************/
#pragma once
// CLSID of the MFT.
// {1C2CE17A-FAAD-4E73-85E7-167068093F25}
DEFINE_GUID(CLSID_AvsCamMft0,
0x1c2ce17a, 0xfaad, 0x4e73, 0x85, 0xe7, 0x16, 0x70, 0x68, 0x9, 0x3f, 0x25);
|