diff options
author | Melanie Thielker | 2008-12-23 23:41:46 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-12-23 23:41:46 +0000 |
commit | 318de200bd398d41b246126f541cd10ac7785b77 (patch) | |
tree | 9d41791fe7a75765b239bb1fd7f593f7fac9f4cd /OpenSim/Framework | |
parent | Addinf InterregionData.cs IInterregionComms.cs and InterregionComms.cs (diff) | |
download | opensim-SC_OLD-318de200bd398d41b246126f541cd10ac7785b77.zip opensim-SC_OLD-318de200bd398d41b246126f541cd10ac7785b77.tar.gz opensim-SC_OLD-318de200bd398d41b246126f541cd10ac7785b77.tar.bz2 opensim-SC_OLD-318de200bd398d41b246126f541cd10ac7785b77.tar.xz |
Plumb in EventNotification* and EventGodDelete
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> |