From: <go...@us...> - 2002-08-27 19:41:26
|
Update of /cvsroot/decaldev/source/Include In directory usw-pr-cvs1:/tmp/cvs-serv5466/Include Modified Files: Decal.idl Log Message: Add hooks for 3Dwidth and height. Added hook for using Madars 'ItemExists' memloc Index: Decal.idl =================================================================== RCS file: /cvsroot/decaldev/source/Include/Decal.idl,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Decal.idl 26 Aug 2002 00:30:12 -0000 1.13 --- Decal.idl 27 Aug 2002 19:41:21 -0000 1.14 *************** *** 27,31 **** eMoveItemEx = 0x00010000, ePosition = 0x00020000, ! eFaceHeading = 0x00040000 } ; --- 27,33 ---- eMoveItemEx = 0x00010000, ePosition = 0x00020000, ! eFaceHeading = 0x00040000, ! eArea3DWidth = 0x00080000, ! eArea3DHeight = 0x00100000 } ; *************** *** 244,247 **** --- 246,252 ---- [id(27), helpstring("method DropItem")] HRESULT DropItem([in]long lObjectID); [id(28), helpstring("method FaceHeading")] HRESULT FaceHeading([in] float fHeading, [in] VARIANT_BOOL bUnknown, [out,retval] VARIANT_BOOL *pVal); + [propget, id(29), helpstring("property Screen3DWidth")] HRESULT Area3DWidth([out, retval] long *pVal); + [propget, id(30), helpstring("property Screen3DHeight")] HRESULT Area3DHeight([out, retval] long *pVal); + [id(31), helpstring("method ItemIsKnown")] HRESULT ItemIsKnown([in] long lGUID, [out,retval] VARIANT_BOOL *pVal); }; |