1998-12-18 16:00:03 +00:00
|
|
|
#ifndef __WINE_OBJBASE_H
|
|
|
|
#define __WINE_OBJBASE_H
|
|
|
|
|
1999-06-05 15:23:20 +00:00
|
|
|
#define _OBJBASE_H_
|
1998-12-18 16:00:03 +00:00
|
|
|
|
2000-11-15 22:12:48 +00:00
|
|
|
#include "unknwn.h"
|
1998-12-18 16:00:03 +00:00
|
|
|
|
1999-01-17 16:32:32 +00:00
|
|
|
/* the following depend only on obj_base.h */
|
2001-05-07 18:20:32 +00:00
|
|
|
#include "wine/obj_base.h"
|
1999-01-17 16:32:32 +00:00
|
|
|
#include "wine/obj_misc.h"
|
|
|
|
#include "wine/obj_channel.h"
|
|
|
|
#include "wine/obj_clientserver.h"
|
|
|
|
#include "wine/obj_storage.h"
|
1998-12-18 16:00:03 +00:00
|
|
|
|
1999-01-17 16:32:32 +00:00
|
|
|
/* the following depend on obj_storage.h */
|
1999-02-13 12:25:03 +00:00
|
|
|
#include "wine/obj_marshal.h"
|
1999-01-17 16:32:32 +00:00
|
|
|
#include "wine/obj_moniker.h"
|
|
|
|
#include "wine/obj_propertystorage.h"
|
1998-12-18 16:00:03 +00:00
|
|
|
|
1999-01-17 16:32:32 +00:00
|
|
|
/* the following depend on obj_moniker.h */
|
|
|
|
#include "wine/obj_dataobject.h"
|
1998-12-18 16:00:03 +00:00
|
|
|
|
1999-03-10 18:03:53 +00:00
|
|
|
#include "wine/obj_dragdrop.h"
|
|
|
|
|
2000-09-22 22:17:49 +00:00
|
|
|
#ifndef RC_INVOKED
|
|
|
|
/* For compatibility only, at least for now */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-12 21:10:54 +00:00
|
|
|
#ifndef INITGUID
|
2001-01-02 20:55:40 +00:00
|
|
|
#include "cguid.h"
|
2001-04-12 21:10:54 +00:00
|
|
|
#endif
|
2001-01-02 20:55:40 +00:00
|
|
|
|
2000-10-19 20:32:18 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2000-12-15 21:29:41 +00:00
|
|
|
HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid);
|
1999-03-23 13:48:56 +00:00
|
|
|
|
2000-10-19 20:32:18 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-12-19 02:09:52 +00:00
|
|
|
#ifndef __WINE__
|
|
|
|
/* These macros are msdev's way of defining COM objects.
|
|
|
|
* They are provided here for use by Winelib developpers.
|
1999-04-22 14:56:14 +00:00
|
|
|
*/
|
1999-06-05 15:23:20 +00:00
|
|
|
#define FARSTRUCT
|
|
|
|
#define HUGEP
|
|
|
|
|
1999-03-10 18:03:53 +00:00
|
|
|
#define WINOLEAPI STDAPI
|
|
|
|
#define WINOLEAPI_(type) STDAPI_(type)
|
|
|
|
|
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
#define interface struct
|
|
|
|
#define STDMETHOD(method) virtual HRESULT STDMETHODCALLTYPE method
|
|
|
|
#define STDMETHOD_(type,method) virtual type STDMETHODCALLTYPE method
|
|
|
|
#define PURE = 0
|
|
|
|
#define THIS_
|
|
|
|
#define THIS void
|
|
|
|
#define DECLARE_INTERFACE(iface) interface iface
|
|
|
|
#define DECLARE_INTERFACE_(iface, baseiface) interface iface : public baseiface
|
|
|
|
|
1999-04-22 14:56:14 +00:00
|
|
|
#define BEGIN_INTERFACE
|
|
|
|
#define END_INTERFACE
|
1999-03-10 18:03:53 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define interface struct
|
2000-06-16 21:48:24 +00:00
|
|
|
#define STDMETHOD(method) HRESULT STDMETHODCALLTYPE (*method)
|
|
|
|
#define STDMETHOD_(type,method) type STDMETHODCALLTYPE (*method)
|
1999-03-10 18:03:53 +00:00
|
|
|
#define PURE
|
|
|
|
#define THIS_ INTERFACE FAR* This,
|
|
|
|
#define THIS INTERFACE FAR* This
|
1999-04-22 14:56:14 +00:00
|
|
|
|
1999-03-10 18:03:53 +00:00
|
|
|
#ifdef CONST_VTABLE
|
|
|
|
#undef CONST_VTBL
|
|
|
|
#define CONST_VTBL const
|
1999-04-22 14:56:14 +00:00
|
|
|
#define DECLARE_INTERFACE(iface) \
|
|
|
|
typedef interface iface { const struct iface##Vtbl FAR* lpVtbl; } iface; \
|
|
|
|
typedef const struct iface##Vtbl iface##Vtbl; \
|
|
|
|
const struct iface##Vtbl
|
1999-03-10 18:03:53 +00:00
|
|
|
#else
|
|
|
|
#undef CONST_VTBL
|
|
|
|
#define CONST_VTBL
|
1999-04-22 14:56:14 +00:00
|
|
|
#define DECLARE_INTERFACE(iface) \
|
|
|
|
typedef interface iface { struct iface##Vtbl FAR* lpVtbl; } iface; \
|
|
|
|
typedef struct iface##Vtbl iface##Vtbl; \
|
|
|
|
struct iface##Vtbl
|
1999-03-10 18:03:53 +00:00
|
|
|
#endif
|
|
|
|
#define DECLARE_INTERFACE_(iface, baseiface) DECLARE_INTERFACE(iface)
|
|
|
|
|
1999-04-22 14:56:14 +00:00
|
|
|
#define BEGIN_INTERFACE
|
|
|
|
#define END_INTERFACE
|
1999-03-10 18:03:53 +00:00
|
|
|
|
2000-12-19 02:09:52 +00:00
|
|
|
#endif /* __cplusplus && !CINTERFACE */
|
|
|
|
|
|
|
|
#endif /* __WINE__ */
|
1998-12-18 16:00:03 +00:00
|
|
|
|
|
|
|
#endif /* __WINE_OBJBASE_H */
|