slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@3697
|
3 |
Copyright (C) 1997-2010 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@252
|
20 |
slouken@libsdl.org
|
slouken@0
|
21 |
*/
|
slouken@1402
|
22 |
#include "SDL_config.h"
|
slouken@0
|
23 |
|
slouken@0
|
24 |
/* This file defines a structure that carries language-independent
|
slouken@0
|
25 |
error messages
|
slouken@0
|
26 |
*/
|
slouken@0
|
27 |
|
slouken@0
|
28 |
#ifndef _SDL_error_c_h
|
slouken@0
|
29 |
#define _SDL_error_c_h
|
slouken@0
|
30 |
|
slouken@0
|
31 |
#define ERR_MAX_STRLEN 128
|
slouken@0
|
32 |
#define ERR_MAX_ARGS 5
|
slouken@0
|
33 |
|
slouken@1895
|
34 |
typedef struct SDL_error
|
slouken@1895
|
35 |
{
|
slouken@1895
|
36 |
/* This is a numeric value corresponding to the current error */
|
slouken@1895
|
37 |
int error;
|
slouken@0
|
38 |
|
slouken@1895
|
39 |
/* This is a key used to index into a language hashtable containing
|
slouken@1895
|
40 |
internationalized versions of the SDL error messages. If the key
|
slouken@1895
|
41 |
is not in the hashtable, or no hashtable is available, the key is
|
slouken@1895
|
42 |
used directly as an error message format string.
|
slouken@1895
|
43 |
*/
|
slouken@1895
|
44 |
char key[ERR_MAX_STRLEN];
|
slouken@0
|
45 |
|
slouken@1895
|
46 |
/* These are the arguments for the error functions */
|
slouken@1895
|
47 |
int argc;
|
slouken@1895
|
48 |
union
|
slouken@1895
|
49 |
{
|
slouken@1895
|
50 |
void *value_ptr;
|
slouken@1895
|
51 |
#if 0 /* What is a character anyway? (UNICODE issues) */
|
slouken@1895
|
52 |
unsigned char value_c;
|
slouken@0
|
53 |
#endif
|
slouken@1895
|
54 |
int value_i;
|
slouken@1895
|
55 |
double value_f;
|
slouken@1895
|
56 |
char buf[ERR_MAX_STRLEN];
|
slouken@1895
|
57 |
} args[ERR_MAX_ARGS];
|
slouken@0
|
58 |
} SDL_error;
|
slouken@0
|
59 |
|
slouken@0
|
60 |
#endif /* _SDL_error_c_h */
|
slouken@4472
|
61 |
|
slouken@1895
|
62 |
/* vi: set ts=4 sw=4 expandtab: */
|