Name
XtVaGetValues — retrieve the current values of resources associated with a widget instance, using varargs argument style.
Synopsis
void XtVaGetValues(object, ..., NULL)
Widget object;
Arguments
objectSpecifies the object whose resource values are to be returned; may be of class Object or any subclass thereof.
..., NULLSpecifies the NULL-terminated variable-length list of resource name/value pairs to override any other resource specifications.
Description
XtVaGetValues is identical in function to XtGetValues with the args and num_args arguments replaced by a varargs list. All value entries in the list must specify pointers to storage allocated by the caller to which the resource value will be copied. It is the caller’s responsibility to ensure that sufficient storage is allocated. If XtVaTypedArg is specified, the type field specifies the representation desired by the caller and the size field specifies the number of bytes allocated to store the result of the conversion. If the size is insufficient, a warning message is issued and the list entry is skipped.
See Also
XtGetValues(1), XtSetArg(1), XtSetValues(1), XtVaSetValues(1).