Initial upload

Initial upload.
This commit is contained in:
Jaysyn904
2024-10-09 14:17:22 -04:00
parent a13073fd78
commit e51634d39b
2354 changed files with 658510 additions and 0 deletions

39
_module/nss/_sw_ilr.nss Normal file
View File

@@ -0,0 +1,39 @@
#include "fcb_inc_vars"
#include "fcb_inc_parser"
#include "fcb_inc_general"
//==========================================/
void main()
//==========================================/
{
//uncomment to use - controls ILR enable/disable
/*
string arg = retrieve_arg(1);
if(get_is_number(arg))
{
string result = "";
switch(StringToInt(arg))
{
case 0:
{
switch_ILR_enable(0);
result = "ILR disabled";
break;
}
default:
{
switch_ILR_enable(1);
result = "ILR enabled";
break;
}
}
set_function_result(result);
set_function_result_valid();
}
*/
}