User guide

20-83
Using OpenVera Assertions
category:24
This represents the category assigned to the assertion. It is a
24-bit integer constant.
Ova_String userMessage
This represents the custom user message assigned to the
assertion.
Ova_TimeL startTime
This represents the start time for the assertion as an unsigned
long long.
Ova_TimeL endTime
This represents the end time for the assertion as an unsigned long
long.
For non-temporal assertions, startTime and endTime will always be
the same.
The following is the prototype of the user action functions:
typedef void (*OvaAssertionFailCB)(OvaAssertionData
asData);
For example, a sample callback function would look like:
void my_user_action(OvaAssertionData assertionData)
{
.
.
.
}