2 * Copyright 2002 Ove Kaaven
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 /* COM vtable compatibility macros for g++ */
22 /* Included here because the generated header needs them */
24 cpp_quote
("#if defined(__cplusplus) && !defined(CINTERFACE)")
25 cpp_quote
(" #ifdef ICOM_USE_COM_INTERFACE_ATTRIBUTE")
26 cpp_quote
(" #define ICOM_COM_INTERFACE_ATTRIBUTE __attribute__((com_interface))")
28 cpp_quote
(" #define ICOM_COM_INTERFACE_ATTRIBUTE")
31 cpp_quote
(" #ifdef ICOM_MSVTABLE_COMPAT")
32 cpp_quote
(" #define ICOM_MSVTABLE_COMPAT_FIELDS \\")
33 cpp_quote
(" long dummyRTTI1; \\")
34 cpp_quote
(" long dummyRTTI2;")
35 cpp_quote
(" #define ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE 0,0,")
37 cpp_quote
(" #define ICOM_MSVTABLE_COMPAT_FIELDS")
38 cpp_quote
(" #define ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE")
47 uuid(00000000-0000-0000-C000
-000000000046),
48 pointer_default(unique)
52 typedef [unique] IUnknown
*LPUNKNOWN
;
54 HRESULT QueryInterface
(
56 [out, iid_is(riid
)] void **ppvObject
);
63 uuid(00000001-0000-0000-C000
-000000000046),
64 pointer_default(unique)
66 interface IClassFactory
: IUnknown
68 typedef [unique] IClassFactory
*LPCLASSFACTORY
;
71 HRESULT CreateInstance
(
72 [in, unique] IUnknown
*pUnkOuter
,
74 [out, iid_is(riid
)] void **ppvObject
);
76 [call_as
(CreateInstance
)]
77 HRESULT RemoteCreateInstance
(
79 [out, iid_is(riid
)] IUnknown
**ppvObject
);
86 HRESULT RemoteLockServer
(