NAME
XmuCallInitializers − call all registered initializer functions for an application context.
SYNOPSIS
#include <X11/Xmu/Initer.h>
void XmuCallInitializers(app_context)
XtAppContext app_context;
Inputs
app_context
Specifies the application context for which the initializer functions should be called.
DESCRIPTION
If this is the first time it has been called for the given application context, XmuCallInitializers() invokes each of the functions registered with XmuAddInitializer(). Each function is called with two arguments, the application context and the private data that was registered with the function. XmuCallInitializers() will never call these functions more than once for any application context.
USAGE
If a widget needs to do application-context-specific initialization, it can register a function with XmuAddInitializer() in its class_initialize() method, and then call XmuCallInitializers() for the application context of each widget instance in the initialize() method.