40 lines
826 B
Plaintext
40 lines
826 B
Plaintext
#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();
|
|
}
|
|
*/
|
|
}
|