aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie Thielker2009-02-26 20:11:55 +0000
committerMelanie Thielker2009-02-26 20:11:55 +0000
commited2de7ac821544751280b1310a49c2f4ba70b4c3 (patch)
treea8c72b7b3574512f51e799fdfcd131505b3c5dc3 /OpenSim/Framework
parentChanged the type of the ApplicationRegistry member from RegistryCore to IRegi... (diff)
downloadopensim-SC_OLD-ed2de7ac821544751280b1310a49c2f4ba70b4c3.zip
opensim-SC_OLD-ed2de7ac821544751280b1310a49c2f4ba70b4c3.tar.gz
opensim-SC_OLD-ed2de7ac821544751280b1310a49c2f4ba70b4c3.tar.bz2
opensim-SC_OLD-ed2de7ac821544751280b1310a49c2f4ba70b4c3.tar.xz
Plumb in the RetrieveInstantMessages event that is sent by the viewer
when it is ready to receive offline IM
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index bfc70a4..4b95726 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -426,6 +426,7 @@ namespace OpenSim.Framework
426 426
427 public delegate void UserInfoRequest(IClientAPI client); 427 public delegate void UserInfoRequest(IClientAPI client);
428 public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client); 428 public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client);
429 public delegate void RetrieveInstantMessages(IClientAPI client);
429 430
430 #endregion 431 #endregion
431 432
@@ -752,6 +753,8 @@ namespace OpenSim.Framework
752 753
753 event UserInfoRequest OnUserInfoRequest; 754 event UserInfoRequest OnUserInfoRequest;
754 event UpdateUserInfo OnUpdateUserInfo; 755 event UpdateUserInfo OnUpdateUserInfo;
756
757 event RetrieveInstantMessages OnRetrieveInstantMessages;
755 758
756 /// <summary> 759 /// <summary>
757 /// Set the debug level at which packet output should be printed to console. 760 /// Set the debug level at which packet output should be printed to console.