blob: 9289fba5e039cf23bbd3effbefb9b1ebd8738751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) Microsoft Corporation. All rights reserved.
import "oaidl.idl";
import "ocidl.idl";
import "EventDetectorOemAdapter.idl";
[uuid(33C3430A-6199-4C55-831F-30EDF9D644EB), version(1.0)]
library EventDetectorContosoAdapterLib
{
// 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 IEventDetectorOemAdapter;
}
};
|