Changeset 4833 for trunk/include/win/wine/obj_connection.h
- Timestamp:
- Dec 24, 2000, 12:23:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/obj_connection.h
r641 r4833 1 /* $Id: obj_connection.h,v 1.5 1999-08-22 22:52:06 sandervl Exp $ */2 1 /* 3 2 * Defines the COM interfaces and APIs related to structured data storage. … … 8 7 #ifndef __WINE_WINE_OBJ_CONNECTION_H 9 8 #define __WINE_WINE_OBJ_CONNECTION_H 10 11 12 #include "winbase.h"13 9 14 10 #ifdef __cplusplus … … 57 53 #undef ICOM_INTERFACE 58 54 59 #ifdef ICOM_CINTERFACE60 55 /*** IUnknwon methods ***/ 61 56 #define IConnectionPoint_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b) … … 68 63 #define IConnectionPoint_Unadvise(p,a) ICOM_CALL1(Unadvise,p,a) 69 64 #define IConnectionPoint_EnumConnections(p,a) ICOM_CALL1(EnumConnections,p,a) 70 #endif71 65 72 66 … … 84 78 #undef ICOM_INTERFACE 85 79 86 #ifdef ICOM_CINTERFACE87 80 /*** IUnknwon methods ***/ 88 81 #define IConnectionPointContainer_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b) … … 90 83 #define IConnectionPointContainer_Release(p) ICOM_CALL (Release,p) 91 84 /*** IConnectionPointContainer methods ***/ 92 #define IConnectionPointContainer_EnumConnectionPoints(p,a) ICOM_CALL1(CreateInstance,p,a) 93 #define IConnectionPointContainer_FindConnectionPoint(p,a,b) ICOM_CALL2(LockServer,p,a,b) 94 #endif 85 #define IConnectionPointContainer_EnumConnectionPoints(p,a) ICOM_CALL1(EnumConnectionPoints,p,a) 86 #define IConnectionPointContainer_FindConnectionPoint(p,a,b) ICOM_CALL2(FindConnectionPoint,p,a,b) 95 87 96 88 … … 110 102 #undef ICOM_INTERFACE 111 103 112 #ifdef ICOM_CINTERFACE113 104 /*** IUnknwon methods ***/ 114 105 #define IEnumConnections_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b) … … 120 111 #define IEnumConnections_Reset(p) ICOM_CALL (Reset,p) 121 112 #define IEnumConnections_Clone(p,a) ICOM_CALL1(Clone,p,a) 122 #endif123 113 124 114 /***************************************************************************** … … 137 127 #undef ICOM_INTERFACE 138 128 139 #ifdef ICOM_CINTERFACE140 129 /*** IUnknwon methods ***/ 141 130 #define IEnumConnectionPoints_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b) … … 147 136 #define IEnumConnectionPoints_Reset(p) ICOM_CALL (Reset,p) 148 137 #define IEnumConnectionPoints_Clone(p,a) ICOM_CALL1(Clone,p,a) 149 #endif150 138 151 139 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.