diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index e86d08c..f14967e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -1834,5 +1834,20 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1834 | { | 1834 | { |
1835 | return m_LSL_Functions.llXorBase64StringsCorrect(str1, str2); | 1835 | return m_LSL_Functions.llXorBase64StringsCorrect(str1, str2); |
1836 | } | 1836 | } |
1837 | |||
1838 | public LSL_List llGetPrimMediaParams(int face, LSL_List rules) | ||
1839 | { | ||
1840 | return m_LSL_Functions.llGetPrimMediaParams(face, rules); | ||
1841 | } | ||
1842 | |||
1843 | public LSL_Integer llSetPrimMediaParams(int face, LSL_List rules) | ||
1844 | { | ||
1845 | return m_LSL_Functions.llSetPrimMediaParams(face, rules); | ||
1846 | } | ||
1847 | |||
1848 | public LSL_Integer llClearPrimMedia(LSL_Integer face) | ||
1849 | { | ||
1850 | return m_LSL_Functions.llClearPrimMedia(face); | ||
1851 | } | ||
1837 | } | 1852 | } |
1838 | } | 1853 | } |