d3drm: Avoid LPDIRECT3DRMLIGHT.
[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 #ifndef __WIDL__
24 #define threading(model)
25 #define progid(str)
26 #define vi_progid(str)
27 #endif
28
29 [
30     uuid(A8D2C5FE-CDCB-4B9D-BDE5-A27343FF54BC),
31 ]
32 interface IMMCVersionInfo : IUnknown
33 {
34    HRESULT GetMMCVersion([out] long * pVersionMajor, [out] long * pVersionMinor);
35 }
36
37
38 [
39    uuid(9EECDD85-B715-4188-8A72-61159ABDB8C4),
40    version(1.0),
41 ]
42 library MMCVersionLib
43 {
44    importlib("stdole2.tlb");
45
46    [
47       helpstring("MMCVersionInfo 1.0 Object"),
48       uuid(D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684),
49       threading(apartment),
50       progid("NODEMGR.MMCVersionInfo.1"),
51       vi_progid("NODEMGR.MMCVersionInfo")
52    ]
53    coclass MMCVersionInfo
54    {
55        [default] interface IMMCVersionInfo;
56    }
57
58 }