1999-02-25 18:10:15 +01:00
|
|
|
/*
|
|
|
|
* Defines the COM interfaces and APIs related to structured data storage.
|
|
|
|
*
|
|
|
|
* Depends on 'obj_base.h'.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_WINE_OBJ_CONNECTION_H
|
|
|
|
#define __WINE_WINE_OBJ_CONNECTION_H
|
|
|
|
|
1999-10-24 23:48:50 +02:00
|
|
|
#include "wine/obj_base.h"
|
1999-02-25 18:10:15 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
|
1999-06-12 12:53:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* defined(__cplusplus) */
|
1999-02-25 18:10:15 +01:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Declare the structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct tagCONNECTDATA
|
|
|
|
{
|
|
|
|
IUnknown *pUnk;
|
|
|
|
DWORD dwCookie;
|
|
|
|
} CONNECTDATA, *LPCONNECTDATA;
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Predeclare the interfaces
|
|
|
|
*/
|
|
|
|
DEFINE_GUID(IID_IConnectionPoint, 0xb196b286, 0xbab4, 0x101a, 0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07);
|
|
|
|
typedef struct IConnectionPoint IConnectionPoint, *LPCONNECTIONPOINT;
|
|
|
|
|
|
|
|
DEFINE_GUID(IID_IConnectionPointContainer, 0xb196b284, 0xbab4, 0x101a, 0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07);
|
|
|
|
typedef struct IConnectionPointContainer IConnectionPointContainer, *LPCONNECTIONPOINTCONTAINER;
|
|
|
|
|
|
|
|
DEFINE_GUID(IID_IEnumConnections, 0xb196b287, 0xbab4, 0x101a, 0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07);
|
|
|
|
typedef struct IEnumConnections IEnumConnections, *LPENUMCONNECTIONS;
|
|
|
|
|
|
|
|
DEFINE_GUID(IID_IEnumConnectionPoints, 0xb196b285, 0xbab4, 0x101a, 0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07);
|
|
|
|
typedef struct IEnumConnectionPoints IEnumConnectionPoints, *LPENUMCONNECTIONPOINTS;
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IConnectionPoint interface
|
|
|
|
*/
|
|
|
|
#define ICOM_INTERFACE IConnectionPoint
|
|
|
|
#define IConnectionPoint_METHODS \
|
1999-04-25 21:01:52 +02:00
|
|
|
ICOM_METHOD1(HRESULT,GetConnectionInterface, IID*,pIID) \
|
|
|
|
ICOM_METHOD1(HRESULT,GetConnectionPointContainer, IConnectionPointContainer**,ppCPC) \
|
|
|
|
ICOM_METHOD2(HRESULT,Advise, IUnknown*,pUnkSink, DWORD*,pdwCookie) \
|
|
|
|
ICOM_METHOD1(HRESULT,Unadvise, DWORD,dwCookie) \
|
|
|
|
ICOM_METHOD1(HRESULT,EnumConnections, IEnumConnections**,ppEnum)
|
1999-02-25 18:10:15 +01:00
|
|
|
#define IConnectionPoint_IMETHODS \
|
|
|
|
IUnknown_IMETHODS \
|
|
|
|
IConnectionPoint_METHODS
|
|
|
|
ICOM_DEFINE(IConnectionPoint,IUnknown)
|
|
|
|
#undef ICOM_INTERFACE
|
|
|
|
|
|
|
|
/*** IUnknwon methods ***/
|
|
|
|
#define IConnectionPoint_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
|
|
|
#define IConnectionPoint_AddRef(p) ICOM_CALL (AddRef,p)
|
|
|
|
#define IConnectionPoint_Release(p) ICOM_CALL (Release,p)
|
|
|
|
/*** IConnectionPointContainer methods ***/
|
|
|
|
#define IConnectionPoint_GetConnectionInterface(p,a) ICOM_CALL1(GetConnectionInterface,p,a)
|
|
|
|
#define IConnectionPoint_GetConnectionPointContainer(p,a) ICOM_CALL1(GetConnectionPointContainer,p,a)
|
|
|
|
#define IConnectionPoint_Advise(p,a,b) ICOM_CALL2(Advise,p,a,b)
|
|
|
|
#define IConnectionPoint_Unadvise(p,a) ICOM_CALL1(Unadvise,p,a)
|
|
|
|
#define IConnectionPoint_EnumConnections(p,a) ICOM_CALL1(EnumConnections,p,a)
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IConnectionPointContainer interface
|
|
|
|
*/
|
|
|
|
#define ICOM_INTERFACE IConnectionPointContainer
|
|
|
|
#define IConnectionPointContainer_METHODS \
|
1999-04-25 21:01:52 +02:00
|
|
|
ICOM_METHOD1(HRESULT,EnumConnectionPoints, IEnumConnectionPoints**,ppEnum) \
|
|
|
|
ICOM_METHOD2(HRESULT,FindConnectionPoint, REFIID,riid, IConnectionPoint**,ppCP)
|
1999-02-25 18:10:15 +01:00
|
|
|
#define IConnectionPointContainer_IMETHODS \
|
|
|
|
IUnknown_IMETHODS \
|
|
|
|
IConnectionPointContainer_METHODS
|
|
|
|
ICOM_DEFINE(IConnectionPointContainer,IUnknown)
|
|
|
|
#undef ICOM_INTERFACE
|
|
|
|
|
|
|
|
/*** IUnknwon methods ***/
|
|
|
|
#define IConnectionPointContainer_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
|
|
|
#define IConnectionPointContainer_AddRef(p) ICOM_CALL (AddRef,p)
|
|
|
|
#define IConnectionPointContainer_Release(p) ICOM_CALL (Release,p)
|
|
|
|
/*** IConnectionPointContainer methods ***/
|
|
|
|
#define IConnectionPointContainer_EnumConnectionPoints(p,a) ICOM_CALL1(CreateInstance,p,a)
|
|
|
|
#define IConnectionPointContainer_FindConnectionPoint(p,a,b) ICOM_CALL2(LockServer,p,a,b)
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IEnumConnections interface
|
|
|
|
*/
|
|
|
|
#define ICOM_INTERFACE IEnumConnections
|
|
|
|
#define IEnumConnections_METHODS \
|
1999-04-25 21:01:52 +02:00
|
|
|
ICOM_METHOD3(HRESULT,Next, ULONG,cConnections, LPCONNECTDATA,rgcd, ULONG*,pcFectched) \
|
|
|
|
ICOM_METHOD1(HRESULT,Skip, ULONG,cConnections) \
|
|
|
|
ICOM_METHOD (HRESULT,Reset) \
|
|
|
|
ICOM_METHOD1(HRESULT,Clone, IEnumConnections**,ppEnum)
|
1999-02-25 18:10:15 +01:00
|
|
|
#define IEnumConnections_IMETHODS \
|
|
|
|
IUnknown_IMETHODS \
|
|
|
|
IEnumConnections_METHODS
|
|
|
|
ICOM_DEFINE(IEnumConnections,IUnknown)
|
|
|
|
#undef ICOM_INTERFACE
|
|
|
|
|
|
|
|
/*** IUnknwon methods ***/
|
|
|
|
#define IEnumConnections_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
|
|
|
#define IEnumConnections_AddRef(p) ICOM_CALL (AddRef,p)
|
|
|
|
#define IEnumConnections_Release(p) ICOM_CALL (Release,p)
|
|
|
|
/*** IConnectionPointContainer methods ***/
|
|
|
|
#define IEnumConnections_Next(p,a,b,c) ICOM_CALL3(Next,p,a,b,c)
|
|
|
|
#define IEnumConnections_Skip(p,a) ICOM_CALL1(Skip,p,a)
|
|
|
|
#define IEnumConnections_Reset(p) ICOM_CALL (Reset,p)
|
|
|
|
#define IEnumConnections_Clone(p,a) ICOM_CALL1(Clone,p,a)
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IEnumConnectionPoints interface
|
|
|
|
*/
|
|
|
|
#define ICOM_INTERFACE IEnumConnectionPoints
|
|
|
|
#define IEnumConnectionPoints_METHODS \
|
1999-04-25 21:01:52 +02:00
|
|
|
ICOM_METHOD3(HRESULT,Next, ULONG,cConnections, LPCONNECTIONPOINT*,ppCP, ULONG*,pcFectched) \
|
|
|
|
ICOM_METHOD1(HRESULT,Skip, ULONG,cConnections) \
|
|
|
|
ICOM_METHOD (HRESULT,Reset) \
|
|
|
|
ICOM_METHOD1(HRESULT,Clone, IEnumConnections**,ppEnum)
|
1999-02-25 18:10:15 +01:00
|
|
|
#define IEnumConnectionPoints_IMETHODS \
|
|
|
|
IUnknown_IMETHODS \
|
|
|
|
IEnumConnectionPoints_METHODS
|
|
|
|
ICOM_DEFINE(IEnumConnectionPoints,IUnknown)
|
|
|
|
#undef ICOM_INTERFACE
|
|
|
|
|
|
|
|
/*** IUnknwon methods ***/
|
|
|
|
#define IEnumConnectionPoints_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
|
|
|
#define IEnumConnectionPoints_AddRef(p) ICOM_CALL (AddRef,p)
|
|
|
|
#define IEnumConnectionPoints_Release(p) ICOM_CALL (Release,p)
|
|
|
|
/*** IConnectionPointContainer methods ***/
|
|
|
|
#define IEnumConnectionPoints_Next(p,a,b,c) ICOM_CALL3(Next,p,a,b,c)
|
|
|
|
#define IEnumConnectionPoints_Skip(p,a) ICOM_CALL1(Skip,p,a)
|
|
|
|
#define IEnumConnectionPoints_Reset(p) ICOM_CALL (Reset,p)
|
|
|
|
#define IEnumConnectionPoints_Clone(p,a) ICOM_CALL1(Clone,p,a)
|
|
|
|
|
1999-06-12 12:53:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif /* defined(__cplusplus) */
|
1999-02-25 18:10:15 +01:00
|
|
|
|
|
|
|
#endif /* __WINE_WINE_OBJ_CONTROL_H */
|
|
|
|
|
|
|
|
|