Error MessagesError Messages —
Display error messages. | |
Description
These functions are used to display error messages. The output will take place in
an error dialog and on stderr.
Details
gpe_error_box ()
void gpe_error_box (const char *text);
Creates and shows normal, blocking error dialog.
gpe_error_box_nonblocking ()
void gpe_error_box_nonblocking (const char *text);
Creates and shows a non-blocking error message.
gpe_perror_box ()
void gpe_perror_box (const char *text);
Shows an error message with perror style information.
gpe_perror_box_nonblocking ()
void gpe_perror_box_nonblocking (const char *text);
Shows an error message with perror style information, non-blocking version.
gpe_error_box_fmt ()
void gpe_error_box_fmt (const char *format,
...);
Shows a formated error message using a printf style argument list.
format : | Message format string
|
... : | Argument list
|