diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index f83fea2..bbd9cf1 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -452,6 +452,47 @@ namespace OpenSim.Framework | |||
452 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); | 452 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); |
453 | 453 | ||
454 | public delegate double UpdatePriorityHandler(UpdatePriorityData data); | 454 | public delegate double UpdatePriorityHandler(UpdatePriorityData data); |
455 | |||
456 | public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int Flags,UUID AgentID); | ||
457 | |||
458 | public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name, UUID AgentID); | ||
459 | |||
460 | public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); | ||
461 | |||
462 | public delegate void FindAgentUpdate(IClientAPI client, UUID hunter, UUID target); | ||
463 | |||
464 | public delegate void TrackAgentUpdate(IClientAPI client, UUID hunter, UUID target); | ||
465 | |||
466 | public delegate void FreezeUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target); | ||
467 | |||
468 | public delegate void EjectUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target); | ||
469 | |||
470 | public delegate void NewUserReport(IClientAPI client, string regionName,UUID abuserID, byte catagory, byte checkflags, string details, UUID objectID, Vector3 postion, byte reportType ,UUID screenshotID, string summery, UUID reporter); | ||
471 | |||
472 | public delegate void GodUpdateRegionInfoUpdate(IClientAPI client, float BillableFactor, ulong EstateID, ulong RegionFlags, byte[] SimName,int RedirectX, int RedirectY); | ||
473 | |||
474 | public delegate void GodlikeMessage(IClientAPI client, UUID requester, byte[] Method, byte[] Parameter); | ||
475 | |||
476 | public delegate void SaveStateHandler(IClientAPI client,UUID agentID); | ||
477 | |||
478 | public delegate void GroupAccountSummaryRequest(IClientAPI client,UUID agentID, UUID groupID); | ||
479 | |||
480 | public delegate void GroupAccountDetailsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); | ||
481 | |||
482 | public delegate void GroupAccountTransactionsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); | ||
483 | |||
484 | public delegate void ParcelBuyPass(IClientAPI client, UUID agentID, int ParcelLocalID); | ||
485 | |||
486 | public delegate void ParcelGodMark(IClientAPI client, UUID agentID, int ParcelLocalID); | ||
487 | |||
488 | public delegate void GroupActiveProposalsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); | ||
489 | |||
490 | public delegate void GroupVoteHistoryRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); | ||
491 | |||
492 | |||
493 | public delegate void SimWideDeletesDelegate(IClientAPI client,UUID agentID, int flags, UUID targetID); | ||
494 | |||
495 | public delegate void SendPostcard(IClientAPI client); | ||
455 | 496 | ||
456 | #endregion | 497 | #endregion |
457 | 498 | ||
@@ -1028,6 +1069,26 @@ namespace OpenSim.Framework | |||
1028 | 1069 | ||
1029 | event PlacesQuery OnPlacesQuery; | 1070 | event PlacesQuery OnPlacesQuery; |
1030 | 1071 | ||
1072 | event FindAgentUpdate OnFindAgentEvent; | ||
1073 | event TrackAgentUpdate OnTrackAgentEvent; | ||
1074 | event NewUserReport OnUserReportEvent; | ||
1075 | event SaveStateHandler OnSaveStateEvent; | ||
1076 | event GroupAccountSummaryRequest OnGroupAccountSummaryRequest; | ||
1077 | event GroupAccountDetailsRequest OnGroupAccountDetailsRequest; | ||
1078 | event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest; | ||
1079 | event FreezeUserUpdate OnParcelFreezeUserEvent; | ||
1080 | event EjectUserUpdate OnParcelEjectUserEvent; | ||
1081 | event ParcelBuyPass OnParcelBuyPass; | ||
1082 | event ParcelGodMark OnParcelGodMark; | ||
1083 | event GroupActiveProposalsRequest OnGroupActiveProposalsRequest; | ||
1084 | event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | ||
1085 | event SimWideDeletesDelegate OnSimWideDeletes; | ||
1086 | event SendPostcard OnSendPostcard; | ||
1087 | event MuteListEntryUpdate OnUpdateMuteListEntryEvent; | ||
1088 | event MuteListEntryRemove OnRemoveMuteListEntryEvent; | ||
1089 | event GodlikeMessage onGodlikeMessageEvent; | ||
1090 | event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent; | ||
1091 | |||
1031 | /// <summary> | 1092 | /// <summary> |
1032 | /// Set the debug level at which packet output should be printed to console. | 1093 | /// Set the debug level at which packet output should be printed to console. |
1033 | /// </summary> | 1094 | /// </summary> |
@@ -1394,5 +1455,12 @@ namespace OpenSim.Framework | |||
1394 | void SendRebakeAvatarTextures(UUID textureID); | 1455 | void SendRebakeAvatarTextures(UUID textureID); |
1395 | 1456 | ||
1396 | void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages); | 1457 | void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages); |
1458 | |||
1459 | void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt); | ||
1460 | |||
1461 | void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier); | ||
1462 | |||
1463 | void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); | ||
1464 | |||
1397 | } | 1465 | } |
1398 | } | 1466 | } |