1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
/*
-----------------------------------------------
Generic Allegro Project Template
By Kronoman - July 2003
Copyright (c) 2003, Kronoman
In loving memory of my father
-----------------------------------------------
gerror.h
-----------------------------------------------
Error messages
-----------------------------------------------
*/
#ifndef GERROR_H
#define GERROR_H
#include <allegro.h>
#include <stdarg.h> /* for the variable argument list */
#include <stdlib.h> /* for use of malloc */
void raise_error(AL_CONST char *msg, ...);
#endif
|