aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie Thielker2009-03-27 22:47:41 +0000
committerMelanie Thielker2009-03-27 22:47:41 +0000
commitcbef90fec6ebdbc4280b684425479a18cfca01d0 (patch)
treefa20313e59274a0d331e185729fc366e36a5b2d2 /OpenSim/Framework
parent* Adding a few more requirements for *nix (diff)
downloadopensim-SC_OLD-cbef90fec6ebdbc4280b684425479a18cfca01d0.zip
opensim-SC_OLD-cbef90fec6ebdbc4280b684425479a18cfca01d0.tar.gz
opensim-SC_OLD-cbef90fec6ebdbc4280b684425479a18cfca01d0.tar.bz2
opensim-SC_OLD-cbef90fec6ebdbc4280b684425479a18cfca01d0.tar.xz
Add the events needed for profiles.
Fixes Mantis #3324
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 4a0becd..ce4d411 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -427,6 +427,10 @@ namespace OpenSim.Framework
427 public delegate void UserInfoRequest(IClientAPI client); 427 public delegate void UserInfoRequest(IClientAPI client);
428 public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client); 428 public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client);
429 public delegate void RetrieveInstantMessages(IClientAPI client); 429 public delegate void RetrieveInstantMessages(IClientAPI client);
430 public delegate void PickDelete(IClientAPI client, UUID pickID);
431 public delegate void PickGodDelete(IClientAPI client, UUID agentID, UUID pickID, UUID queryID);
432 public delegate void PickInfoUpdate(IClientAPI client, UUID pickID, UUID creatorID, bool topPick, string name, string desc, UUID snapshotID, int sortOrder, bool enabled);
433 public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes);
430 434
431 #endregion 435 #endregion
432 436
@@ -755,6 +759,11 @@ namespace OpenSim.Framework
755 event UpdateUserInfo OnUpdateUserInfo; 759 event UpdateUserInfo OnUpdateUserInfo;
756 760
757 event RetrieveInstantMessages OnRetrieveInstantMessages; 761 event RetrieveInstantMessages OnRetrieveInstantMessages;
762
763 event PickDelete OnPickDelete;
764 event PickGodDelete OnPickGodDelete;
765 event PickInfoUpdate OnPickInfoUpdate;
766 event AvatarNotesUpdate OnAvatarNotesUpdate;
758 767
759 /// <summary> 768 /// <summary>
760 /// Set the debug level at which packet output should be printed to console. 769 /// Set the debug level at which packet output should be printed to console.