slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1312
|
3 |
Copyright (C) 1997-2006 Sam Lantinga
|
slouken@0
|
4 |
|
slouken@0
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1312
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@0
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1312
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@0
|
9 |
|
slouken@0
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@0
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@0
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1312
|
13 |
Lesser General Public License for more details.
|
slouken@0
|
14 |
|
slouken@1312
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1312
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1312
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@0
|
18 |
|
slouken@0
|
19 |
Sam Lantinga
|
slouken@251
|
20 |
slouken@libsdl.org
|
slouken@0
|
21 |
*/
|
slouken@0
|
22 |
|
slouken@1895
|
23 |
/**
|
slouken@1895
|
24 |
* \file SDL_error.h
|
slouken@1895
|
25 |
* Simple error message routines for SDL
|
slouken@1895
|
26 |
*/
|
slouken@0
|
27 |
|
slouken@0
|
28 |
#ifndef _SDL_error_h
|
slouken@0
|
29 |
#define _SDL_error_h
|
slouken@0
|
30 |
|
slouken@1356
|
31 |
#include "SDL_stdinc.h"
|
slouken@1356
|
32 |
|
slouken@0
|
33 |
#include "begin_code.h"
|
slouken@0
|
34 |
/* Set up for C function definitions, even when using C++ */
|
slouken@0
|
35 |
#ifdef __cplusplus
|
slouken@1895
|
36 |
/* *INDENT-OFF* */
|
slouken@0
|
37 |
extern "C" {
|
slouken@1895
|
38 |
/* *INDENT-ON* */
|
slouken@0
|
39 |
#endif
|
slouken@0
|
40 |
|
slouken@0
|
41 |
/* Public functions */
|
slouken@337
|
42 |
extern DECLSPEC void SDLCALL SDL_SetError(const char *fmt, ...);
|
slouken@1895
|
43 |
extern DECLSPEC char *SDLCALL SDL_GetError(void);
|
slouken@337
|
44 |
extern DECLSPEC void SDLCALL SDL_ClearError(void);
|
slouken@0
|
45 |
|
slouken@0
|
46 |
/* Private error message function - used internally */
|
slouken@0
|
47 |
#define SDL_OutOfMemory() SDL_Error(SDL_ENOMEM)
|
slouken@1361
|
48 |
#define SDL_Unsupported() SDL_Error(SDL_UNSUPPORTED)
|
slouken@1895
|
49 |
typedef enum
|
slouken@1895
|
50 |
{
|
slouken@1895
|
51 |
SDL_ENOMEM,
|
slouken@1895
|
52 |
SDL_EFREAD,
|
slouken@1895
|
53 |
SDL_EFWRITE,
|
slouken@1895
|
54 |
SDL_EFSEEK,
|
slouken@1895
|
55 |
SDL_UNSUPPORTED,
|
slouken@1895
|
56 |
SDL_LASTERROR
|
slouken@0
|
57 |
} SDL_errorcode;
|
slouken@977
|
58 |
extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
|
slouken@0
|
59 |
|
slouken@0
|
60 |
|
slouken@0
|
61 |
/* Ends C function definitions when using C++ */
|
slouken@0
|
62 |
#ifdef __cplusplus
|
slouken@1895
|
63 |
/* *INDENT-OFF* */
|
slouken@0
|
64 |
}
|
slouken@1895
|
65 |
/* *INDENT-ON* */
|
slouken@0
|
66 |
#endif
|
slouken@0
|
67 |
#include "close_code.h"
|
slouken@0
|
68 |
|
slouken@0
|
69 |
#endif /* _SDL_error_h */
|
slouken@1895
|
70 |
|
slouken@1895
|
71 |
/* vi: set ts=4 sw=4 expandtab: */
|