quartz: Define the QuartzTypeLib library in control.idl.
[wine] / include / mmc.idl
1 /*
2  *
3  * Copyright 2011 Alistair Leslie-Hughes
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 import "basetsd.h";
21 import "oaidl.idl";
22
23 [
24     uuid(A8D2C5FE-CDCB-4B9D-BDE5-A27343FF54BC),
25 ]
26 interface IMMCVersionInfo : IUnknown
27 {
28    HRESULT GetMMCVersion([out] long * pVersionMajor, [out] long * pVersionMinor);
29 }
30
31
32 [
33    uuid(9EECDD85-B715-4188-8A72-61159ABDB8C4),
34    version(1.0),
35 ]
36 library MMCVersionLib
37 {
38    importlib("stdole2.tlb");
39
40    [
41       helpstring("MMCVersionInfo coclass"),
42       uuid(D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684)
43    ]
44    coclass MMCVersionInfo
45    {
46        [default] interface IMMCVersionInfo;
47    }
48
49 }