diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 66699b1..6d9ed79 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -431,6 +431,7 @@ namespace OpenSim.Framework | |||
431 | public delegate void PickGodDelete(IClientAPI client, UUID agentID, UUID pickID, UUID queryID); | 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); | 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); | 433 | public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); |
434 | public delegate void MuteListRequest(IClientAPI client, uint muteCRC); | ||
434 | 435 | ||
435 | #endregion | 436 | #endregion |
436 | 437 | ||
@@ -764,6 +765,8 @@ namespace OpenSim.Framework | |||
764 | event PickGodDelete OnPickGodDelete; | 765 | event PickGodDelete OnPickGodDelete; |
765 | event PickInfoUpdate OnPickInfoUpdate; | 766 | event PickInfoUpdate OnPickInfoUpdate; |
766 | event AvatarNotesUpdate OnAvatarNotesUpdate; | 767 | event AvatarNotesUpdate OnAvatarNotesUpdate; |
768 | |||
769 | event MuteListRequest OnMuteListRequest; | ||
767 | 770 | ||
768 | /// <summary> | 771 | /// <summary> |
769 | /// Set the debug level at which packet output should be printed to console. | 772 | /// Set the debug level at which packet output should be printed to console. |
@@ -1128,6 +1131,8 @@ namespace OpenSim.Framework | |||
1128 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); | 1131 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); |
1129 | 1132 | ||
1130 | void SendUserInfoReply(bool imViaEmail, bool visible, string email); | 1133 | void SendUserInfoReply(bool imViaEmail, bool visible, string email); |
1134 | |||
1135 | void SendUseCachedMuteList(); | ||
1131 | 1136 | ||
1132 | void KillEndDone(); | 1137 | void KillEndDone(); |
1133 | 1138 | ||