NRC_SetIntVar(int num, int value)
Set the value of an INT variable
Type
int=>Set the value of an INT variable
Return value | Description |
---|---|
0 | The function is called successfully |
-101 | Invalid input parameter |
-102 | The target object does not exist. This typically occurs when the system initialization is incomplete, and calling other functions may return this value |
-103 | The target object is currently in an inoperable state |
Parameter Option
Parameter | Type | Description |
---|---|---|
num | int | The number of the INT variable, value range: 0 < num <= 100 |
value | int | The target value to be set |
Sample code
NRC_SetIntVar(1,66);//Assign 66 to the variable GI001