diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 06c5094..4577758 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -93,6 +93,8 @@ namespace OpenSim.Framework | |||
93 | 93 | ||
94 | public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); | 94 | public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); |
95 | 95 | ||
96 | public delegate void GenericCall1(IClientAPI remoteClient); | ||
97 | |||
96 | public delegate void GenericCall2(); | 98 | public delegate void GenericCall2(); |
97 | 99 | ||
98 | // really don't want to be passing packets in these events, so this is very temporary. | 100 | // really don't want to be passing packets in these events, so this is very temporary. |
@@ -828,6 +830,11 @@ namespace OpenSim.Framework | |||
828 | /// </value> | 830 | /// </value> |
829 | bool IsActive { get; set; } | 831 | bool IsActive { get; set; } |
830 | 832 | ||
833 | /// <value> | ||
834 | /// Determines whether the client is logging out or not. | ||
835 | /// </value> | ||
836 | bool IsLoggingOut { get; set; } | ||
837 | |||
831 | bool SendLogoutPacketWhenClosing { set; } | 838 | bool SendLogoutPacketWhenClosing { set; } |
832 | 839 | ||
833 | // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] | 840 | // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] |
@@ -873,7 +880,8 @@ namespace OpenSim.Framework | |||
873 | event DeRezObject OnDeRezObject; | 880 | event DeRezObject OnDeRezObject; |
874 | event Action<IClientAPI> OnRegionHandShakeReply; | 881 | event Action<IClientAPI> OnRegionHandShakeReply; |
875 | event GenericCall2 OnRequestWearables; | 882 | event GenericCall2 OnRequestWearables; |
876 | event GenericCall2 OnCompleteMovementToRegion; | 883 | event GenericCall1 OnCompleteMovementToRegion; |
884 | event UpdateAgent OnPreAgentUpdate; | ||
877 | event UpdateAgent OnAgentUpdate; | 885 | event UpdateAgent OnAgentUpdate; |
878 | event AgentRequestSit OnAgentRequestSit; | 886 | event AgentRequestSit OnAgentRequestSit; |
879 | event AgentSit OnAgentSit; | 887 | event AgentSit OnAgentSit; |
@@ -1471,5 +1479,7 @@ namespace OpenSim.Framework | |||
1471 | 1479 | ||
1472 | void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); | 1480 | void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); |
1473 | 1481 | ||
1482 | void SendChangeUserRights(UUID agentID, UUID friendID, int rights); | ||
1483 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); | ||
1474 | } | 1484 | } |
1475 | } | 1485 | } |