aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs10
-rw-r--r--OpenSim/Framework/ParcelMediaCommandEnum.cs23
2 files changed, 33 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 6503d81..8c9aee7 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -640,6 +640,16 @@ namespace OpenSim.Framework
640 void SendLandObjectOwners(Dictionary<LLUUID, int> ownersAndCount); 640 void SendLandObjectOwners(Dictionary<LLUUID, int> ownersAndCount);
641 void SendLandParcelOverlay(byte[] data, int sequence_id); 641 void SendLandParcelOverlay(byte[] data, int sequence_id);
642 642
643 #region Parcel Methods
644
645 void SendParcelMediaCommand(ParcelMediaCommandEnum flags, uint command, float time);
646
647 void SendParcelMediaUpdate(string mediaUrl, LLUUID mediaTextureID,
648 byte autoScale, string mediaType, string mediaDesc, int mediaWidth, int mediaHeight,
649 byte mediaLoop);
650
651 #endregion
652
643 void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, LLUUID AssetFullID); 653 void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, LLUUID AssetFullID);
644 void SendConfirmXfer(ulong xferID, uint PacketID); 654 void SendConfirmXfer(ulong xferID, uint PacketID);
645 void SendXferRequest(ulong XferID, short AssetType, LLUUID vFileID, byte FilePath, byte[] FileName); 655 void SendXferRequest(ulong XferID, short AssetType, LLUUID vFileID, byte FilePath, byte[] FileName);
diff --git a/OpenSim/Framework/ParcelMediaCommandEnum.cs b/OpenSim/Framework/ParcelMediaCommandEnum.cs
new file mode 100644
index 0000000..e9a2cec
--- /dev/null
+++ b/OpenSim/Framework/ParcelMediaCommandEnum.cs
@@ -0,0 +1,23 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Framework
6{
7 public enum ParcelMediaCommandEnum
8 {
9 Stop = 0,
10 Pause = 1,
11 Play = 2,
12 Loop = 3,
13 Texture = 4,
14 Url = 5,
15 Time = 6,
16 Agent = 7,
17 Unload = 8,
18 AutoAlign = 9,
19 Type = 10,
20 Size = 11,
21 Desc = 12
22 }
23}