diff options
author | Kent Quirk <q@lindenlab.com> | 2009-01-05 18:59:12 +0000 |
---|---|---|
committer | Kent Quirk <q@lindenlab.com> | 2009-01-05 18:59:12 +0000 |
commit | 667ca55bad0108c4bdf8f007b89e1a52fc766aad (patch) | |
tree | 7bd62ac8d9af079c3994565f3f200ccc250bbc28 /indra/newview/llviewermessage.h | |
parent | 95f365789f4cebc7bd97ccefd538f14d481a8373 (diff) |
svn merge -r106715:HEAD svn+ssh://svn.lindenlab.com/svn/linden/branches/q/notifications-merge-r106715 . QAR-1149 -- Final merge of notifications to trunk.
Diffstat (limited to 'indra/newview/llviewermessage.h')
-rw-r--r-- | indra/newview/llviewermessage.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.h b/indra/newview/llviewermessage.h index a2ed04d0a7..bbda752e89 100644 --- a/indra/newview/llviewermessage.h +++ b/indra/newview/llviewermessage.h @@ -192,11 +192,15 @@ void process_decline_callingcard(LLMessageSystem* msg, void**); void invalid_message_callback(LLMessageSystem*, void*, EMessageException); void process_initiate_download(LLMessageSystem* msg, void**); -void inventory_offer_callback(S32 option, void* user_data); void start_new_inventory_observer(); struct LLOfferInfo { + LLOfferInfo() {}; + LLOfferInfo(const LLSD& sd); + + void forceResponse(InventoryOfferResponse response); + EInstantMessage mIM; LLUUID mFromID; BOOL mFromGroup; @@ -208,6 +212,10 @@ struct LLOfferInfo std::string mFromName; std::string mDesc; LLHost mHost; + + LLSD asLLSD(); + bool inventory_offer_callback(const LLSD& notification, const LLSD& response); + }; void process_feature_disabled_message(LLMessageSystem* msg, void**); |