Name
XtProcessEvent — process one input event.
Synopsis
void XtProcessEvent(mask)
XtInputMask mask;
Arguments
maskSpecifies what types of events to process. The mask is the bitwise inclusive OR of XtIMXEvent (an X event), XtIMTimer (a timer event), or XtIMAlternateInput (an alternate input event). The symbolic constant XtIMAll is the bitwise inclusive OR of all input types.
Description
XtProcessEvent has been superseded by XtAppProcessEvent. XtProcessEvent gets one event of any of the types specified in mask and dispatches it.
Programs rarely need this much control over the event dispatching mechanism. Most programs use XtAppMainLoop.