XtInitProc() XtInitProc()
Name
XtInitProc - interface definition for the initialize() methods.
Synopsis
typedef void (*XtInitProc)(Widget, Widget, ArgList, Cardinal *);
Widget request;
Widget init;
ArgList args;
Cardinal *num_args;
Inputs
request Specifies the widget with resource values as requested by the argument list, the resource database, and the widget defaults,
before any initialization.
init Specifies a widget with resource and nonresource values modified by calls to the widget's superclasses'initialize() methods.
args Specifies the argument list passed to XtCreateWidget().
num_args Specifies the number of arguments in args.
Description
XtInitProc is the type of the Core and Object initialize() method and the Constraint initialize() method. See the initialize() reference
pages in Section 4.
See Also
initialize(4), Constraint initialize(4).
Xt - Widget Method Prototypes XtInitProc()