From 318de200bd398d41b246126f541cd10ac7785b77 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 23 Dec 2008 23:41:46 +0000 Subject: Plumb in EventNotification* and EventGodDelete --- OpenSim/Framework/IClientAPI.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index d683802..05e8f75 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -417,6 +417,10 @@ namespace OpenSim.Framework public delegate void ClassifiedInfoUpdate(UUID classifiedID, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, Vector3 globalPos, byte classifiedFlags, int price, IClientAPI client); public delegate void ClassifiedDelete(UUID classifiedID, IClientAPI client); + public delegate void EventNotificationAddRequest(uint EventID, IClientAPI client); + public delegate void EventNotificationRemoveRequest(uint EventID, IClientAPI client); + + public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client); #endregion @@ -733,6 +737,10 @@ namespace OpenSim.Framework event ClassifiedDelete OnClassifiedDelete; event ClassifiedDelete OnClassifiedGodDelete; + event EventNotificationAddRequest OnEventNotificationAddRequest; + event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; + event EventGodDelete OnEventGodDelete; + // void ActivateGesture(UUID assetId, UUID gestureId); /// -- cgit v1.1