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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
| /************************************************************************/
| /*
| *
| * Filename : MilCaptureFilterUids.H
| * Revision : 10.30.0643
| * Content : This file contains the GUIDs relative to the
| * MIL Capture DirectShow Filter.
| *
| * Comments : Some defines may be here but not yet
| * implemented in the library.
| *
| * Copyright © Matrox Electronic Systems Ltd., 1992-2018.
| * All Rights Reserved
| *************************************************************************/
|
| #pragma once
|
|
| // {F39B53A0-9881-468A-B256-2AFCDC070A18}
| DEFINE_GUID(CLSID_MilSampleGrabber,
| 0xf39b53a0, 0x9881, 0x468a, 0xb2, 0x56, 0x2a, 0xfc, 0xdc, 0x7, 0xa, 0x18);
|
| // {54CEB8AD-D0DB-474D-B3A8-2282F7249192}
| DEFINE_GUID(CLSID_MilCapture,
| 0x54ceb8ad, 0xd0db, 0x474d, 0xb3, 0xa8, 0x22, 0x82, 0xf7, 0x24, 0x91, 0x92);
|
| //
| // IMilCapture's GUID
| //
| // {39450A9A-2ACC-42A2-8D40-0FC3DA005767}
| DEFINE_GUID(IID_IMilCapture,
| 0x39450a9a, 0x2acc, 0x42a2, 0x8d, 0x40, 0xf, 0xc3, 0xda, 0x0, 0x57, 0x67);
|
| // {88D68975-9802-444F-9B37-1EC5E978C14A}
| DEFINE_GUID(IID_IMilCapturePin,
| 0x88d68975, 0x9802, 0x444f, 0x9b, 0x37, 0x1e, 0xc5, 0xe9, 0x78, 0xc1, 0x4a);
|
| //
| // IMilSampleGraber's GUID
| //
| // {9491EF84-DC84-4793-9272-0CFAE6B50502}
| DEFINE_GUID(IID_IMilSampleGrabber,
| 0x9491ef84, 0xdc84, 0x4793, 0x92, 0x72, 0xc, 0xfa, 0xe6, 0xb5, 0x5, 0x2);
|
|