diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 2487a21..2ab1fff 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -529,5 +529,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
529 | 529 | ||
530 | LSL_String osDetectedCountry(LSL_Integer number); | 530 | LSL_String osDetectedCountry(LSL_Integer number); |
531 | LSL_String osGetAgentCountry(LSL_Key agentId); | 531 | LSL_String osGetAgentCountry(LSL_Key agentId); |
532 | |||
533 | LSL_String osStringSubString(LSL_String src, LSL_Integer start); | ||
534 | LSL_String osStringSubString(LSL_String src, LSL_Integer start, LSL_Integer length); | ||
535 | LSL_Integer osStringStartsWith(LSL_String src, LSL_String value, LSL_Integer ignorecase); | ||
536 | LSL_Integer osStringEndsWith(LSL_String src, LSL_String value, LSL_Integer ignorecase); | ||
537 | LSL_Integer osStringIndexOf(LSL_String src, LSL_String value, LSL_Integer ignorecase); | ||
538 | LSL_Integer osStringIndexOf(LSL_String src, LSL_String value, LSL_Integer start, LSL_Integer count, LSL_Integer ignorecase); | ||
539 | LSL_Integer osStringLastIndexOf(LSL_String src, LSL_String value, LSL_Integer ignorecase); | ||
540 | LSL_Integer osStringLastIndexOf(LSL_String src, LSL_String value, LSL_Integer start, LSL_Integer count, LSL_Integer ignorecase); | ||
541 | LSL_String osStringRemove(LSL_String src, LSL_Integer start, LSL_Integer count); | ||
542 | LSL_String osStringReplace(LSL_String src, LSL_String oldvalue, LSL_String newvalue); | ||
532 | } | 543 | } |
533 | } | 544 | } |