XtArgsProc() XtArgsProc()
Name
XtArgsProc - interface definition for the initialize_hook() and get_values_hook() methods.
Synopsis
typedef void (*XtArgsProc)(Widget, ArgList, Cardinal *);
Widget widget;
ArgList args;
Cardinal *num_args;
Inputs
widget Specifies the widget that is being initialized or passed to XtGetValues().
args Specifies the argument list that was passed to XtCreateWidget() or XtGetValues().
num_args Specifies a pointer to the number of elements in args.
Description
XtArgsProc is the type of the Core initialize_hook() method and the Core and Constraint get_values_hook() methods. The initialize_hook()
method is obsolete in Release 4 and later because the args and num_args arguments are now passed directly to the initialize() method. See
the reference pages for these methods in Section 4 for more information.
See Also
get_values_hook(4), Constraint get_values_hook(4), initialize_hook(4).
Xt - Widget Method Prototypes XtArgsProc()