Error Messages

Error Messages — Display error messages.

Synopsis




void                gpe_error_box                       (const char *text);
void                gpe_error_box_nonblocking           (const char *text);
void                gpe_perror_box                      (const char *text);
void                gpe_perror_box_nonblocking          (const char *text);
void                gpe_error_box_fmt                   (const char *format,
                                                         ...);

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.

text :

Error message

gpe_error_box_nonblocking ()

void                gpe_error_box_nonblocking           (const char *text);

Creates and shows a non-blocking error message.

text :

Error message

gpe_perror_box ()

void                gpe_perror_box                      (const char *text);

Shows an error message with perror style information.

text :

Error message

gpe_perror_box_nonblocking ()

void                gpe_perror_box_nonblocking          (const char *text);

Shows an error message with perror style information, non-blocking version.

text :

Error message

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