1XtAppError(3) XT FUNCTIONS XtAppError(3)
2
3
4
6 XtAppError, XtAppSetErrorHandler, XtAppSetWarningHandler, XtAppWarning
7 - low-level error handlers
8
10 void XtAppError(XtAppContext app_context, String message);
11
12 void XtAppSetErrorHandler(XtAppContext app_context, XtErrorHandler han‐
13 dler);
14
15 void XtAppSetWarningHandler(XtAppContext app_context, XtErrorHandler
16 handler);
17
18 void XtAppWarning(XtAppContext app_context, String message);
19
21 app_context
22 Specifies the application context.
23
24 message Specifies the nonfatal error message that is to be reported.
25
26 handler Specifies the new fatal error procedure, which should not
27 return, or the nonfatal error procedure, which usually
28 returns.
29
30 message Specifies the message that is to be reported.
31
33 The XtAppError function calls the installed error procedure and passes
34 the specified message.
35
36 The XtAppSetErrorHandler function registers the specified procedure,
37 which is called when a fatal error condition occurs.
38
39 The XtAppSetWarningHandler registers the specified procedure, which is
40 called when a nonfatal error condition occurs.
41
42 The XtAppWarning function calls the installed nonfatal error procedure
43 and passes the specified message.
44
46 XtAppGetErrorDatabase(3), XtAppErrorMsg(3)
47 X Toolkit Intrinsics - C Language Interface
48 Xlib - C Language X Interface
49
50
51
52X Version 11 libXt 1.1.5 XtAppError(3)