Function iseg_getItemString

Read an item value from the data cache without the use of structures. For applications like LabVIEW this second read function uses basic data types only.

IsegResult iseg_getItemString(const char *name, const char *object, const char *result, int size)

Parameter name is the session name passed to iseg_connect (for example "IF0").
Parameter object contains the fully qualified name to read out an iseg item from data cache.
Parameter result references an IsegItem formatted as semicolon-separated-string.
Parameter size: The size of the given buffer.
Return value is ISEG_OK if the object could address a valid IsegItem of data cache or ISEG_ERROR

Example:

 iseg_getItemString("can0", "0.4.1.VoltageMeasure", buffer, sizeof(buffer));
  buffer = "0.4.1.VoltageMeasure;100.345;002;1431520867.2152;1431520867.0982"