blob: 47431ce71e8209e6e6a8414c857b8b2cae3ebad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import "oaidl.idl";
import "ocidl.idl";
import "KeywordDetectorOemAdapter.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;
}
};
|