Measure Reference Manual

contab
output
INT .EXT:ref:*
is an array that defines the measurement configuration. For the format of the contab array,
see MEASCONFIGURE (page 383).
bufsize
input
INT:value
is the size in bytes of the destination buffer, contab. If bufsize is greater than 32,000 bytes,
error 3203 (ERR^BADPARAMS) is returned. To get the contab size returned in bytesret,
bufsize must be at least 4 bytes.
bytesret
output
INT:ref:1
is the size in bytes of the contab array (and the number of bytes returned to the destination
buffer contab.) If bytesret is larger than bufsize, error 3204 (ERR^BUFTOOSMALL) is
returned, and no contab value is returned.
starttime
output
FIXED:ref:1
is the start time of the measurement.
stoptime
output
FIXED:ref:1
is the stop time of the measurement. A value of -1 indicates that no stop time was specified.
interval
output
FIXED:ref:1
is the collection interval of the measurement. A value of -1 indicates that no collection interval
was specified.
entities
output
INT(32):ref:MAX^T+1
is an array that contains the maximum number of entities of each entity type measured
concurrently. The array elements are in entity-type order, as shown in this table. A value of 0
indicates the entity type was not included in the configuration. MEASREADCONF does not
return the entities and ctrspace arrays for currently active measurements, MEASSTATUS
does. This array should be declared with a zero base. For example:
INT(32).ENTITIES[0:MAX^T];
MEASREADCONF 433