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
21 Modified for using with XNC image engine by Leo <leo@xnc.dubna.su>
27 /* Very common errors go here */
28 void SDL_Error(SDL_errorcode code
)
32 SDL_SetError("Out of memory");
35 SDL_SetError("Error reading from datastream");
38 SDL_SetError("Error writing to datastream");
41 SDL_SetError("Error seeking in datastream");
44 SDL_SetError("Unknown SDL error");
49 void SDL_SetError (const char *fmt
, ...)
51 fprintf(stderr
, "SDL_error: %s\n",fmt
);
54 void SDL_ClearError(void)