From: Jeffrey D. <ha...@us...> - 2003-09-09 02:50:04
|
Log Message: ----------- Casting tool stuff Modified Files: -------------- /cvsroot/decaldev/source/Include: Decal.idl Revision Data ------------- Index: Decal.idl =================================================================== RCS file: /cvsroot/decaldev/source/Include/Decal.idl,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- Decal.idl 7 Sep 2003 22:16:28 -0000 1.41 +++ Decal.idl 8 Sep 2003 20:35:46 -0000 1.42 @@ -187,6 +187,8 @@ eSendMessageByMask = 12, eToolText = 13, eToolText2 = 14, + eUseItemRaw = 15, + eUseFociSpell = 16, eAvailableHooksEx_DWORD = 0x7FFFFFFF // coerce enums into 4 byte instead of two }; @@ -313,8 +315,10 @@ [id(57), helpstring("method SetIDFilter")] HRESULT SetIDFilter([in] IKitchenSink* pIDFilter); [id(58), helpstring("method UstAddItem")] HRESULT UstAddItem([in] long lObjectID); [id(59), helpstring("method SendMessageByMask")] HRESULT SendMessageByMask([in] LONG lMask, [in] BSTR szMessage); - [id(60), helpstring("Display a message in the upper left hand corner as either white text or yellow with the busy/error sound.")] HRESULT ToolText([in] BSTR Text, VARIANT_BOOL bError); - [id(61), helpstring("Appends text to the message in the upper left hand corner as either white text or yellow with the busy/error sound.")] HRESULT ToolTextAppend([in] BSTR Text, VARIANT_BOOL bError); + [id(60), helpstring("Display a message in the upper left hand corner as either white text or yellow with the busy/error sound.")] HRESULT ToolText([in] BSTR Text, [in] VARIANT_BOOL bError); + [id(61), helpstring("Appends text to the message in the upper left hand corner as either white text or yellow with the busy/error sound.")] HRESULT ToolTextAppend([in] BSTR Text, [in] VARIANT_BOOL bError); + [id(62), helpstring("Raw Use Item (3rd param)")] HRESULT UseItemRaw([in]long lObjectID, long lUseState, long lUseMethod); + [id(63), helpstring("Use the Casting Foci's Spell")] HRESULT UseFociSpell([in]long UseThis, long OnThis); }; [ @@ -458,8 +462,8 @@ [id(2), helpstring("method OnChatBoxMessage")] VARIANT_BOOL OnChatBoxMessage([in] BSTR bstrText, [in] LONG lColor, [in,out] VARIANT_BOOL *bEat ); [id(3), helpstring("method OnCommandLineText")] VARIANT_BOOL OnCommandLineText([in] BSTR bstrText, [in,out] VARIANT_BOOL *bEat ); [id(4), helpstring("method OnSelectItem")] HRESULT OnSelectItem([in] LONG lGuid); - [id(5), helpstring("method OnToolText")] void OnToolText([in] BSTR bstrText, VARIANT_BOOL bError); - [id(6), helpstring("method OnToolTextAppend")] void OnToolTextAppend([in] BSTR bstrText, VARIANT_BOOL bError); + [id(5), helpstring("method OnToolText")] void OnToolText([in] BSTR bstrText, [in] VARIANT_BOOL bError); + [id(6), helpstring("method OnToolTextAppend")] void OnToolTextAppend([in] BSTR bstrText, [in] VARIANT_BOOL bError); }; [ |