aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Client/MXP/ClientStack/MXPClientView.cs4
-rw-r--r--OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs5
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs5
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs4
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs4
-rw-r--r--OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs4
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs4
8 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
index 5e16347..b5b2508 100644
--- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
+++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
@@ -1020,6 +1020,10 @@ namespace OpenSim.Client.MXP.ClientStack
1020 // Need to translate to MXP somehow 1020 // Need to translate to MXP somehow
1021 } 1021 }
1022 1022
1023 public void SendTeleportProgress(uint flags, string message)
1024 {
1025 }
1026
1023 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 1027 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
1024 { 1028 {
1025 // Need to translate to MXP somehow 1029 // Need to translate to MXP somehow
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
index 1c702d2..c1e281a 100644
--- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
+++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
@@ -578,6 +578,11 @@ namespace OpenSim.Client.Sirikata.ClientStack
578 throw new System.NotImplementedException(); 578 throw new System.NotImplementedException();
579 } 579 }
580 580
581 public void SendTeleportProgress(uint flags, string message)
582 {
583 throw new System.NotImplementedException();
584 }
585
581 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 586 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
582 { 587 {
583 throw new System.NotImplementedException(); 588 throw new System.NotImplementedException();
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index e954aa3..99a46dc 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -584,6 +584,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
584 throw new System.NotImplementedException(); 584 throw new System.NotImplementedException();
585 } 585 }
586 586
587 public void SendTeleportProgress(uint flags, string message)
588 {
589 throw new System.NotImplementedException();
590 }
591
587 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 592 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
588 { 593 {
589 throw new System.NotImplementedException(); 594 throw new System.NotImplementedException();
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 81f99b0..94815cd 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1012,6 +1012,8 @@ namespace OpenSim.Framework
1012 1012
1013 void SendTeleportFailed(string reason); 1013 void SendTeleportFailed(string reason);
1014 void SendTeleportStart(uint flags); 1014 void SendTeleportStart(uint flags);
1015 void SendTeleportProgress(uint flags, string message);
1016
1015 void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance); 1017 void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance);
1016 void SendPayPrice(UUID objectID, int[] payPrice); 1018 void SendPayPrice(UUID objectID, int[] payPrice);
1017 1019
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 3f5aa46..268612e 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -524,6 +524,10 @@ namespace OpenSim.Region.Examples.SimpleModule
524 { 524 {
525 } 525 }
526 526
527 public virtual void SendTeleportProgress(uint flags, string message)
528 {
529 }
530
527 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 531 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
528 { 532 {
529 } 533 }
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index 19bb002..6793ef6 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -1040,6 +1040,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
1040 1040
1041 } 1041 }
1042 1042
1043 public void SendTeleportProgress(uint flags, string message)
1044 {
1045 }
1046
1043 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 1047 public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
1044 { 1048 {
1045 1049
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
index 944bac6..fae12b6 100644
--- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
+++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
@@ -615,6 +615,10 @@ namespace OpenSim.Region.OptionalModules.World.NPC
615 { 615 {
616 } 616 }
617 617
618 public virtual void SendTeleportProgress(uint flags, string message)
619 {
620 }
621
618 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 622 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
619 { 623 {
620 } 624 }
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 0dee374..e46f9b7 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -618,6 +618,10 @@ namespace OpenSim.Tests.Common.Mock
618 { 618 {
619 } 619 }
620 620
621 public void SendTeleportProgress(uint flags, string message)
622 {
623 }
624
621 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) 625 public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance)
622 { 626 {
623 } 627 }