author | Sam Lantinga <slouken@libsdl.org> |
Tue, 15 Feb 2011 21:57:31 -0800 | |
changeset 5303 | d4074e52e739 |
parent 5262 | b530ef003506 |
child 5348 | 16202b090a63 |
permissions | -rw-r--r-- |
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
/* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 |
SDL - Simple DirectMedia Layer |
5262 | 3 |
Copyright (C) 1997-2011 Sam Lantinga |
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
5 |
This library is free software; you can redistribute it and/or |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 |
modify it under the terms of the GNU Lesser General Public |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
7 |
License as published by the Free Software Foundation; either |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 |
version 2.1 of the License, or (at your option) any later version. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
9 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
10 |
This library is distributed in the hope that it will be useful, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
13 |
Lesser General Public License for more details. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
14 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
15 |
You should have received a copy of the GNU Lesser General Public |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
16 |
License along with this library; if not, write to the Free Software |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
18 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
19 |
Sam Lantinga |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
20 |
slouken@libsdl.org |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
21 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
22 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
23 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
24 |
* \file SDL_log.h |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
25 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
26 |
* Simple log messages with categories and priorities. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
27 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
28 |
* By default logs are quiet, but if you're debugging SDL you might want: |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
29 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
30 |
* SDL_LogSetAllPriority(SDL_LOG_PRIORITY_WARN); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
31 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
32 |
* Here's where the messages go on different platforms: |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
33 |
* Windows: debug output stream |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
34 |
* Android: log output |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
35 |
* Others: standard error output (stderr) |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
36 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
37 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
38 |
#ifndef _SDL_log_h |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
39 |
#define _SDL_log_h |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
40 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
41 |
#include "SDL_stdinc.h" |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
42 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
43 |
#include "begin_code.h" |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
44 |
/* Set up for C function definitions, even when using C++ */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
45 |
#ifdef __cplusplus |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
46 |
/* *INDENT-OFF* */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
47 |
extern "C" { |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
48 |
/* *INDENT-ON* */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
49 |
#endif |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
50 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
51 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
52 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
53 |
* \brief The maximum size of a log message |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
54 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
55 |
* Messages longer than the maximum size will be truncated |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
56 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
57 |
#define SDL_MAX_LOG_MESSAGE 4096 |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
58 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
59 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
60 |
* \brief The predefined log categories |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
61 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
62 |
* By default the application category is enabled at the INFO level, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
63 |
* and all other categories are enabled at the CRITICAL level. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
64 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
65 |
enum |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
66 |
{ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
67 |
SDL_LOG_CATEGORY_APPLICATION, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
68 |
SDL_LOG_CATEGORY_ERROR, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
69 |
SDL_LOG_CATEGORY_SYSTEM, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
70 |
SDL_LOG_CATEGORY_AUDIO, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
71 |
SDL_LOG_CATEGORY_VIDEO, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
72 |
SDL_LOG_CATEGORY_RENDER, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
73 |
SDL_LOG_CATEGORY_INPUT, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
74 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
75 |
/* Reserved for future SDL library use */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
76 |
SDL_LOG_CATEGORY_RESERVED1, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
77 |
SDL_LOG_CATEGORY_RESERVED2, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
78 |
SDL_LOG_CATEGORY_RESERVED3, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
79 |
SDL_LOG_CATEGORY_RESERVED4, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
80 |
SDL_LOG_CATEGORY_RESERVED5, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
81 |
SDL_LOG_CATEGORY_RESERVED6, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
82 |
SDL_LOG_CATEGORY_RESERVED7, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
83 |
SDL_LOG_CATEGORY_RESERVED8, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
84 |
SDL_LOG_CATEGORY_RESERVED9, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
85 |
SDL_LOG_CATEGORY_RESERVED10, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
86 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
87 |
/* Beyond this point is reserved for application use, e.g. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
88 |
enum { |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
89 |
MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
90 |
MYAPP_CATEGORY_AWESOME2, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
91 |
MYAPP_CATEGORY_AWESOME3, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
92 |
... |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
93 |
}; |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
94 |
*/ |
5303
d4074e52e739
Fixed gcc -pedantic warning
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
95 |
SDL_LOG_CATEGORY_CUSTOM |
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
96 |
}; |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
97 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
98 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
99 |
* \brief The predefined log priorities |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
100 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
101 |
typedef enum |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
102 |
{ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
103 |
SDL_LOG_PRIORITY_VERBOSE = 1, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
104 |
SDL_LOG_PRIORITY_DEBUG, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
105 |
SDL_LOG_PRIORITY_INFO, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
106 |
SDL_LOG_PRIORITY_WARN, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
107 |
SDL_LOG_PRIORITY_ERROR, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
108 |
SDL_LOG_PRIORITY_CRITICAL, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
109 |
SDL_NUM_LOG_PRIORITIES |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
110 |
} SDL_LogPriority; |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
111 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
112 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
113 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
114 |
* \brief Set the priority of all log categories |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
115 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
116 |
extern DECLSPEC void SDLCALL SDL_LogSetAllPriority(SDL_LogPriority priority); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
117 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
118 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
119 |
* \brief Set the priority of a particular log category |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
120 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
121 |
extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
122 |
SDL_LogPriority priority); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
123 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
124 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
125 |
* \brief Set the priority of a particular log category |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
126 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
127 |
extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
128 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
129 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
130 |
* \brief Reset all priorities to default. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
131 |
* |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
132 |
* \note This is called in SDL_Quit(). |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
133 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
134 |
extern DECLSPEC void SDLCALL SDL_LogResetPriorities(void); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
135 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
136 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
137 |
* \brief Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
138 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
139 |
extern DECLSPEC void SDLCALL SDL_Log(const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
140 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
141 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
142 |
* \brief Log a message with SDL_LOG_PRIORITY_VERBOSE |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
143 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
144 |
extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
145 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
146 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
147 |
* \brief Log a message with SDL_LOG_PRIORITY_INFO |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
148 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
149 |
extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
150 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
151 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
152 |
* \brief Log a message with SDL_LOG_PRIORITY_WARN |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
153 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
154 |
extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
155 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
156 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
157 |
* \brief Log a message with SDL_LOG_PRIORITY_ERROR |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
158 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
159 |
extern DECLSPEC void SDLCALL SDL_LogError(int category, const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
160 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
161 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
162 |
* \brief Log a message with SDL_LOG_PRIORITY_CRITICAL |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
163 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
164 |
extern DECLSPEC void SDLCALL SDL_LogCritical(int category, const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
165 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
166 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
167 |
* \brief Log a message with the specified category and priority. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
168 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
169 |
extern DECLSPEC void SDLCALL SDL_LogMessage(int category, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
170 |
SDL_LogPriority priority, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
171 |
const char *fmt, ...); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
172 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
173 |
/** |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
174 |
* \brief Log a message with the specified category and priority. |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
175 |
*/ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
176 |
extern DECLSPEC void SDLCALL SDL_LogMessageV(int category, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
177 |
SDL_LogPriority priority, |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
178 |
const char *fmt, va_list ap); |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
179 |
|
5235
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
180 |
/** |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
181 |
* \brief The prototype for the log output function |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
182 |
*/ |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
183 |
typedef void (*SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
184 |
|
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
185 |
/** |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
186 |
* \brief Get the current log output function. |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
187 |
*/ |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
188 |
extern DECLSPEC void SDLCALL SDL_LogGetOutputFunction(SDL_LogOutputFunction *callback, void **userdata); |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
189 |
|
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
190 |
/** |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
191 |
* \brief This function allows you to replace the default log output |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
192 |
* function with one of your own. |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
193 |
*/ |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
194 |
extern DECLSPEC void SDLCALL SDL_LogSetOutputFunction(SDL_LogOutputFunction callback, void *userdata); |
1e28342cb15d
Added a way to replace the default logging mechanism
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
195 |
|
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
196 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
197 |
/* Ends C function definitions when using C++ */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
198 |
#ifdef __cplusplus |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
199 |
/* *INDENT-OFF* */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
200 |
} |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
201 |
/* *INDENT-ON* */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
202 |
#endif |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
203 |
#include "close_code.h" |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
204 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
205 |
#endif /* _SDL_log_h */ |
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
206 |
|
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
207 |
/* vi: set ts=4 sw=4 expandtab: */ |