v7 man page for allegro_error

Query: allegro_error

OS: v7

Section: 3alleg4

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

allegro_error(3alleg4)						  Allegro manual					    allegro_error(3alleg4)

NAME
allegro_error - Stores the last Allegro error message. SYNOPSIS
#include <allegro.h> extern char allegro_error[ALLEGRO_ERROR_SIZE]; DESCRIPTION
Text string used by set_gfx_mode(), install_sound() and other functions to report error messages. If they fail and you want to tell the user why, this is the place to look for a description of the problem. Example: void abort_on_error(const char *message) { if (screen != NULL) set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("%s. Last Allegro error `%s' ", message, allegro_error); exit(-1); } ... if (some_allegro_function() == ERROR_CODE) abort_on_error("Error calling some function!"); SEE ALSO
set_gfx_mode(3alleg4), install_sound(3alleg4) Allegro version 4.4.2 allegro_error(3alleg4)
Related Man Pages
exsyscur(3alleg4) - debian
exmidi(3alleg4) - redhat
exmidi(3alleg4) - linux
exmidi(3alleg4) - osx
exmidi(3alleg4) - x11r4
Similar Topics in the Unix Linux Community
crontab every 5 min.
Need to add prefix using sed or awk from cat the file
Sort by values in the 1st row, leaving first four coulumns untouched
Need help to compile and create python64 bit (2.7.9) on Solaris10
Bash - here document on RHEL 6.8 and 6.9 servers aren't working