aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMW2007-08-19 14:55:43 +0000
committerMW2007-08-19 14:55:43 +0000
commit3dffc3e3f647faa3e82126f5107ce13fbd610ffb (patch)
tree7ba2c5494218f34fdb42253615af625c32d9ccde /OpenSim/Framework
parentSqlite datastore should now save the textures and extraparams data (used by s... (diff)
downloadopensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.zip
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.gz
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.bz2
opensim-SC_OLD-3dffc3e3f647faa3e82126f5107ce13fbd610ffb.tar.xz
small clean up.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/General/Interfaces/IClientAPI.cs3
-rw-r--r--OpenSim/Framework/General/NullClientAPI.cs2
2 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
index 2cedea0..e78cfb7 100644
--- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs
+++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
@@ -44,6 +44,7 @@ namespace OpenSim.Framework.Interfaces
44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); 45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags);
46 public delegate void DisconnectUser(); 46 public delegate void DisconnectUser();
47 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID);
47 48
48 public delegate void GenericCall(IClientAPI remoteClient); 49 public delegate void GenericCall(IClientAPI remoteClient);
49 public delegate void GenericCall2(); 50 public delegate void GenericCall2();
@@ -103,6 +104,7 @@ namespace OpenSim.Framework.Interfaces
103 event RequestMapBlocks OnRequestMapBlocks; 104 event RequestMapBlocks OnRequestMapBlocks;
104 event TeleportLocationRequest OnTeleportLocationRequest; 105 event TeleportLocationRequest OnTeleportLocationRequest;
105 event DisconnectUser OnDisconnectUser; 106 event DisconnectUser OnDisconnectUser;
107 event RequestAvatarProperties OnRequestAvatarProperties;
106 108
107 event GenericCall4 OnDeRezObject; 109 event GenericCall4 OnDeRezObject;
108 event GenericCall OnRegionHandShakeReply; 110 event GenericCall OnRegionHandShakeReply;
@@ -226,5 +228,6 @@ namespace OpenSim.Framework.Interfaces
226 bool AddMoney( int debit ); 228 bool AddMoney( int debit );
227 229
228 void SendViewerTime(int phase); 230 void SendViewerTime(int phase);
231 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID);
229 } 232 }
230} 233}
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs
index e001549..ebb670d 100644
--- a/OpenSim/Framework/General/NullClientAPI.cs
+++ b/OpenSim/Framework/General/NullClientAPI.cs
@@ -22,6 +22,7 @@ namespace OpenSim.Framework
22 public event RequestMapBlocks OnRequestMapBlocks; 22 public event RequestMapBlocks OnRequestMapBlocks;
23 public event TeleportLocationRequest OnTeleportLocationRequest; 23 public event TeleportLocationRequest OnTeleportLocationRequest;
24 public event DisconnectUser OnDisconnectUser; 24 public event DisconnectUser OnDisconnectUser;
25 public event RequestAvatarProperties OnRequestAvatarProperties;
25 26
26 public event GenericCall4 OnDeRezObject; 27 public event GenericCall4 OnDeRezObject;
27 public event GenericCall OnRegionHandShakeReply; 28 public event GenericCall OnRegionHandShakeReply;
@@ -158,6 +159,7 @@ namespace OpenSim.Framework
158 } 159 }
159 160
160 public void SendViewerTime(int phase) { } 161 public void SendViewerTime(int phase) { }
162 public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { }
161 } 163 }
162} 164}
163 165