original 1.0.1 release
[xwelltris.git] / src / image / sublib / SDL_error.c
blobc068b580179d42fca4f83a02a4c5aa62696193e7
1 /*
2 Copyright (C) 1999, 2000, 2001 Sam Lantinga
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this library; if not, write to the Free
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 Sam Lantinga
19 slouken@libsdl.org
21 Modified for using with XNC image engine by Leo <leo@xnc.dubna.su>
22 26-03-2002.
25 #include "SDL.h"
27 /* Very common errors go here */
28 void SDL_Error(SDL_errorcode code)
30 switch (code) {
31 case SDL_ENOMEM:
32 SDL_SetError("Out of memory");
33 break;
34 case SDL_EFREAD:
35 SDL_SetError("Error reading from datastream");
36 break;
37 case SDL_EFWRITE:
38 SDL_SetError("Error writing to datastream");
39 break;
40 case SDL_EFSEEK:
41 SDL_SetError("Error seeking in datastream");
42 break;
43 default:
44 SDL_SetError("Unknown SDL error");
45 break;
49 void SDL_SetError (const char *fmt, ...)
51 fprintf(stderr, "SDL_error: %s\n",fmt);
54 void SDL_ClearError(void)