diff options
author | Charles Krinke | 2009-05-13 01:47:29 +0000 |
---|---|---|
committer | Charles Krinke | 2009-05-13 01:47:29 +0000 |
commit | 6257bb8b0997d1615f6e2ecfcbd6a8f1123945b1 (patch) | |
tree | 410336c0925d54d2340e466e6b8b0e08917ab774 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation | |
parent | Thank you kindly, BlueWall sir, for a patch that: (diff) | |
download | opensim-SC_OLD-6257bb8b0997d1615f6e2ecfcbd6a8f1123945b1.zip opensim-SC_OLD-6257bb8b0997d1615f6e2ecfcbd6a8f1123945b1.tar.gz opensim-SC_OLD-6257bb8b0997d1615f6e2ecfcbd6a8f1123945b1.tar.bz2 opensim-SC_OLD-6257bb8b0997d1615f6e2ecfcbd6a8f1123945b1.tar.xz |
Add interface, implementation stub and
script stub for llGetFreeURLs().
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index f0e585a..862ff50 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5557,6 +5557,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5557 | return 16384; | 5557 | return 16384; |
5558 | } | 5558 | } |
5559 | 5559 | ||
5560 | public LSL_Integer llGetFreeURLs() | ||
5561 | { | ||
5562 | m_host.AddScriptLPS(1); | ||
5563 | NotImplemented("llGetFreeURLs"); | ||
5564 | return new LSL_Integer(0); | ||
5565 | } | ||
5566 | |||
5567 | |||
5560 | public LSL_String llGetRegionName() | 5568 | public LSL_String llGetRegionName() |
5561 | { | 5569 | { |
5562 | m_host.AddScriptLPS(1); | 5570 | m_host.AddScriptLPS(1); |