Make sure that no files except unknwn.h include wine/obj_base.h
[wine] / include / objbase.h
1 /*
2  * Copyright (C) 1998 François Gouget
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #ifndef __WINE_OBJBASE_H
20 #define __WINE_OBJBASE_H
21
22 #define _OBJBASE_H_
23
24 #define __WINE_INCLUDE_OBJIDL
25 #include "objidl.h"
26 #undef __WINE_INCLUDE_OBJIDL
27
28 #ifndef RC_INVOKED
29 /* For compatibility only, at least for now */
30 #include <stdlib.h>
31 #endif
32
33 #ifndef INITGUID
34 #include "cguid.h"
35 #endif
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid);
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #ifndef __WINE__
48 /* These macros are msdev's way of defining COM objects.
49  * They are provided here for use by Winelib developpers.
50  */
51 #define FARSTRUCT
52 #define HUGEP
53
54 #define WINOLEAPI        STDAPI
55 #define WINOLEAPI_(type) STDAPI_(type)
56
57 #if defined(__cplusplus) && !defined(CINTERFACE)
58 #define interface struct
59 #define STDMETHOD(method)       virtual HRESULT STDMETHODCALLTYPE method
60 #define STDMETHOD_(type,method) virtual type STDMETHODCALLTYPE method
61 #define PURE                    = 0
62 #define THIS_
63 #define THIS                    void
64 #define DECLARE_INTERFACE(iface)    interface iface
65 #define DECLARE_INTERFACE_(iface, baseiface)    interface iface : public baseiface
66
67 #define BEGIN_INTERFACE
68 #define END_INTERFACE
69
70 #else
71
72 #define interface               struct
73 #define STDMETHOD(method)       HRESULT STDMETHODCALLTYPE (*method)
74 #define STDMETHOD_(type,method) type STDMETHODCALLTYPE (*method)
75 #define PURE
76 #define THIS_                   INTERFACE FAR* This,
77 #define THIS                    INTERFACE FAR* This
78
79 #ifdef CONST_VTABLE
80 #undef CONST_VTBL
81 #define CONST_VTBL const
82 #define DECLARE_INTERFACE(iface) \
83          typedef interface iface { const struct iface##Vtbl FAR* lpVtbl; } iface; \
84          typedef const struct iface##Vtbl iface##Vtbl; \
85          const struct iface##Vtbl
86 #else
87 #undef CONST_VTBL
88 #define CONST_VTBL
89 #define DECLARE_INTERFACE(iface) \
90          typedef interface iface { struct iface##Vtbl FAR* lpVtbl; } iface; \
91          typedef struct iface##Vtbl iface##Vtbl; \
92          struct iface##Vtbl
93 #endif
94 #define DECLARE_INTERFACE_(iface, baseiface)    DECLARE_INTERFACE(iface)
95
96 #define BEGIN_INTERFACE
97 #define END_INTERFACE
98
99 #endif /* __cplusplus && !CINTERFACE */
100
101 #endif /* __WINE__ */
102
103 #endif /* __WINE_OBJBASE_H */