blob: 80c6342d9bcc202f0c30ff571a88c5dafae6e8a7 (
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
27
|
import "oaidl.idl";
import "ocidl.idl";
import "KeywordDetectorOemAdapter.idl";
import "EventDetectorOemAdapter.idl";
[uuid(9D3E6826-CB8E-4D86-8B14-89F0D7EFCD01), version(1.0)]
library KeywordDetectorContosoAdapterLib
{
// The class's uuid (i.e. the COM CLSID) must match that of the pattern
// type GUID returned by the audio driver
[uuid(6F7DBCC1-202E-498D-99C5-61C36C4EB2DC), version(1.0)]
coclass KeywordDetectorContosoAdapter
{
[default] interface IKeywordDetectorOemAdapter;
}
// The class's uuid (i.e. the COM CLSID) must match that of the pattern
// type GUID returned by the audio driver
// 0x207f3d0c, 0x5c79, 0x496f, 0xa9, 0x4c, 0xd3, 0xd2, 0x93, 0x4d, 0xbf, 0xa9
[uuid(207F3D0C-5C79-496F-A94C-D3D2934DBFA9), version(1.0)]
coclass EventDetectorContosoAdapter
{
[default] interface IKeywordDetectorOemAdapter;
}
};
|