[GME-commit]
GMESRC/GME/Core CoreProject.h,1.8,1.9 CoreObject.h,1.10,1.11
CoreMetaProject.h,1.5,1.6 CoreMetaObject.h,1.5,1.6
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Mon Nov 28 21:55:33 CST 2005
- Previous message: [GME-commit]
GMESRC/GME/Interfaces Core.idl,1.12,1.13 Meta.idl,1.20,1.21
Mga.idl,1.46,1.47 MgaUtil.idl,1.45,1.46
- Next message: [GME-commit]
GMESRC/GME/Meta MgaMetaConnJoint.h,1.1,1.2 MgaMetaFCO.h,1.2,1.3
MgaMetaFolder.h,1.2,1.3 MgaMetaModel.h,1.2,1.3
MgaMetaProject.h,1.5,1.6 MgaMetaRegNode.h,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /project/gme-repository/GMESRC/GME/Core
In directory escher:/tmp/cvs-serv27265
Modified Files:
CoreProject.h CoreObject.h CoreMetaProject.h CoreMetaObject.h
Log Message:
Adding Dispatch compatible methods.
CVS User: Zoltan Molnar, ISIS (zolmol)
Index: CoreObject.h
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Core/CoreObject.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** CoreObject.h 13 Oct 2004 15:17:54 -0000 1.10
--- CoreObject.h 28 Nov 2005 21:55:31 -0000 1.11
***************
*** 55,64 ****
--- 55,70 ----
STDMETHODIMP get_ObjID(objid_type *p);
STDMETHODIMP get_Attribute(attrid_type attrid, ICoreAttribute **p);
+ STDMETHODIMP GetAttributeDisp(attrid_type attrid, ICoreAttribute **p) { return get_Attribute( attrid, p); }
STDMETHODIMP get_Attributes(ICoreAttributes **p);
STDMETHODIMP get_AttributeValue(attrid_type attrid, VARIANT *p);
+ STDMETHODIMP GetAttributeValueDisp(attrid_type attrid, VARIANT *p) { return get_AttributeValue( attrid, p); }
STDMETHODIMP put_AttributeValue(attrid_type attrid, VARIANT p);
+ STDMETHODIMP SetAttributeValueDisp(attrid_type attrid, VARIANT p) { return put_AttributeValue( attrid, p); }
STDMETHODIMP get_LoadedAttrValue(attrid_type attrid, VARIANT *p);
+ STDMETHODIMP GetLoadedAttrValueDisp(attrid_type attrid, VARIANT *p) { return get_LoadedAttrValue( attrid, p); }
STDMETHODIMP get_PreviousAttrValue(attrid_type attrid, VARIANT *p);
+ STDMETHODIMP GetPreviousAttrValueDisp(attrid_type attrid, VARIANT *p) { return get_PreviousAttrValue( attrid, p); }
STDMETHODIMP get_PeerLockValue(attrid_type attrid, locking_type *p);
+ STDMETHODIMP GetPeerLockValueDisp(attrid_type attrid, locking_type *p) { return get_PeerLockValue( attrid, p); }
STDMETHODIMP SearchCollection(attrid_type coll_attrid, attrid_type search_attrid,
VARIANT search_value, ICoreObject **p);
Index: CoreProject.h
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Core/CoreProject.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** CoreProject.h 13 Oct 2004 15:17:54 -0000 1.8
--- CoreProject.h 28 Nov 2005 21:55:31 -0000 1.9
***************
*** 90,93 ****
--- 90,94 ----
STDMETHOD(get_Object)(metaid_type metaid, objid_type objid, ICoreObject **p);
+ STDMETHOD(GetObjectDisp)(metaid_type metaid, objid_type objid, ICoreObject **p) { return get_Object( metaid, objid, p); }
STDMETHOD(CreateObject)(metaid_type metaid, ICoreObject **p);
STDMETHOD(get_RootObject)(ICoreObject **p);
Index: CoreMetaObject.h
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Core/CoreMetaObject.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CoreMetaObject.h 13 Oct 2004 15:17:54 -0000 1.5
--- CoreMetaObject.h 28 Nov 2005 21:55:31 -0000 1.6
***************
*** 35,38 ****
--- 35,39 ----
STDMETHODIMP get_Name(BSTR *p);
STDMETHODIMP get_Attribute(attrid_type attrid, ICoreMetaAttribute **p);
+ STDMETHODIMP GetAttributeDisp(attrid_type attrid, ICoreMetaAttribute **p) { return get_Attribute( attrid, p); }
STDMETHODIMP get_Attributes(ICoreMetaAttributes **p);
STDMETHODIMP get_ClassIDs(SAFEARRAY **p);
Index: CoreMetaProject.h
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Core/CoreMetaProject.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CoreMetaProject.h 13 Oct 2004 15:17:54 -0000 1.5
--- CoreMetaProject.h 28 Nov 2005 21:55:31 -0000 1.6
***************
*** 36,39 ****
--- 36,40 ----
STDMETHODIMP put_Name(BSTR p);
STDMETHODIMP get_Object(metaid_type metaid, ICoreMetaObject **p);
+ STDMETHODIMP GetObjectDisp(metaid_type metaid, ICoreMetaObject **p) { return get_Object( metaid, p); }
STDMETHODIMP get_Objects(ICoreMetaObjects **p);
STDMETHODIMP AddObject(metaid_type metaid, BSTR token, BSTR name, ICoreMetaObject **p);
- Previous message: [GME-commit]
GMESRC/GME/Interfaces Core.idl,1.12,1.13 Meta.idl,1.20,1.21
Mga.idl,1.46,1.47 MgaUtil.idl,1.45,1.46
- Next message: [GME-commit]
GMESRC/GME/Meta MgaMetaConnJoint.h,1.1,1.2 MgaMetaFCO.h,1.2,1.3
MgaMetaFolder.h,1.2,1.3 MgaMetaModel.h,1.2,1.3
MgaMetaProject.h,1.5,1.6 MgaMetaRegNode.h,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list