isTableAckable()
This libCTRL.ctl function is called before an acknowledgment of a table, when this has been realized with simple configuration. The function helps to customize a project.
Synopsis
void isTableAckable(int iType, string&dsDps,dyn_time &dtT, dyn_int
&diIndex, dyn_bool &dbConfirm, int &iReturnValue);
Parameters
Parameter | Description |
---|---|
iType | Type of acknowledgement, single or general |
dsDps | Data points to be acknowledged |
dtT | Time of the alert |
diIndex | Index of the alert |
dbConfirm | To confirm? |
iReturnValue |
1 Acknowledgeable 0 Not acknowledgeable |
Return value
None
Error
-
Description
This libCTRL.ctl function is called before an acknowledgment of a table, when this has been realized with simple configuration (see Acknowledge table). The function helps to customize a project.
All dyn values have to have the same length as when they are returned.
Example
void isTableAckable( int iType, dyn_string &dsDps, dyn_time
&dtT, dyn_int &diIndex, dyn_bool &dbConfirm, int
&iReturnValue )
{
iReturnValue = 1;
DebugN("Hallo Test") ;
}
Assignment
Miscellaneous functions, Simple configuration
Availability
CTRL (LibCTRL.ctl)