diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 8 |
1 files changed, 8 insertions, 0 deletions
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 | |||
417 | 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); | 417 | 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); |
418 | public delegate void ClassifiedDelete(UUID classifiedID, IClientAPI client); | 418 | public delegate void ClassifiedDelete(UUID classifiedID, IClientAPI client); |
419 | 419 | ||
420 | public delegate void EventNotificationAddRequest(uint EventID, IClientAPI client); | ||
421 | public delegate void EventNotificationRemoveRequest(uint EventID, IClientAPI client); | ||
422 | |||
423 | public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client); | ||
420 | 424 | ||
421 | #endregion | 425 | #endregion |
422 | 426 | ||
@@ -733,6 +737,10 @@ namespace OpenSim.Framework | |||
733 | event ClassifiedDelete OnClassifiedDelete; | 737 | event ClassifiedDelete OnClassifiedDelete; |
734 | event ClassifiedDelete OnClassifiedGodDelete; | 738 | event ClassifiedDelete OnClassifiedGodDelete; |
735 | 739 | ||
740 | event EventNotificationAddRequest OnEventNotificationAddRequest; | ||
741 | event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | ||
742 | event EventGodDelete OnEventGodDelete; | ||
743 | |||
736 | // void ActivateGesture(UUID assetId, UUID gestureId); | 744 | // void ActivateGesture(UUID assetId, UUID gestureId); |
737 | 745 | ||
738 | /// <summary> | 746 | /// <summary> |