From: Jeffrey D. <ha...@us...> - 2003-09-07 22:17:26
|
Log Message: ----------- Haz's useless commit comments v4.6 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.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- Decal.idl 20 Jun 2003 10:46:44 -0000 1.40 +++ Decal.idl 7 Sep 2003 22:16:28 -0000 1.41 @@ -185,6 +185,8 @@ eIDQueueAdd = 10, eUstAddItem = 11, eSendMessageByMask = 12, + eToolText = 13, + eToolText2 = 14, eAvailableHooksEx_DWORD = 0x7FFFFFFF // coerce enums into 4 byte instead of two }; @@ -311,6 +313,8 @@ [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); }; [ @@ -454,7 +458,9 @@ [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); + }; [ uuid(FF7F5F6D-34E0-4B6F-B3BB-8141DE2EF732), |