diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
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. |