1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/**
* @ingroup file68_lib
* @file sc68/msg68.h
* @author Benjamin Gerard
* @date 2003-08-22
* @brief Message header.
*
*/
/* Copyright (C) 1998-2011 Benjamin Gerard */
/**
* @defgroup file68_msg Output messages
* @ingroup file68_lib
* @brief Provides functions to output text messages.
*
* The output message system defines fixed categories of message:
* msg68_CRITICAL, msg68_ERROR, msg68_WARNING, msg68_NOTICE,
* msg68_INFO, msg68_DEBUG and msg68_TRACE. Each of them can be
* freely enabled (output) or disabled (filter out). msg68_TRACE
* also enable any user defined categories created by the
* msg68_category() function. Special value msg68_NEVER always
* filter out the message. In the contrary the special value
* msg68_ALWAYS always output the message.
*
* @{
*/
/**
* Message handler type.
*
* @param bit one of the @ref enum_msg68_bit enum value.
* @param user_data user private data.
* @param format printf like format string.
* @param va_list variable argument list.
*/
typedef void ;
/**
* Message category help display function.
*
* @param user_data user private data.
* @param bit one of the @ref enum_msg68_bit enum value.
* @param name category name.
* @param description short description.
*/
typedef void ;
/**
* Predefined message categories.
*/
;
/**
* @name Category manipulation functions.
* @{
*/
/**
* Modify message category filter mask.
*
* The msg68_cat_filter() function modifies the current message mask
* allowing to control message category filter.
*
* @param clr bit to clear in the category mask.
* @param set bit to set in the category mask.
* @return modified mask
*/
unsigned int ;
/**
* Get named categories.
*
* @param name name of category.
* @return bit number of named category.
* @retval -1 on error (category does not exist).
*/
int ;
/**
* Create/Modify a category.
*
* @param name category name.
* @param desc a short description the the category.
* @param filter 0:set to disable the category.
*/
int ;
FILE68_API
/**
* Get/Set current category.
*/
int msg68_cat_current(int cat);
/**
* Free/Destroy a category.
*/
void ;
/**
* Set all predefined categories mask according to given level.
*/
int ;
/**
* Get info on a category.
*/
int ;
/**
* Print defined categories.
*/
void ;
/**
* @}
*/
/**
* @name Customize functions.
* @{
*/
/**
* Set message handler.
*
* @param handler pointer to a function to display debug messages
* (0 desactive debug message).
* @return previous handler
*/
msg68_t ;
/**
* Set message handler user-data parameter.
*
* @param cookie user parameter that will be sent as first parameter to
* the output handler.
*
* @see msg68_set_handler();
*/
void * ;
/**
* @} */
/**
* @name Simple message functions
* @{
*
* The msg68_ output functions have no userdata parameter therefore
* the value set by the msg68_set_cookie() will be passed to the
* message handler function.
*/
/**
* Print generic message (variable argument).
*
* @param cat message type @ref enum_msg68_bit.
* @param fmt printf() like format string.
* @param list variable argument list (stdarg.h)
*/
void ;
/**
* Print generic message.
*
* @param cat message type @ref enum_msg68_bit.
* @param fmt printf() like format string.
*/
void ;
/**
* Print critical message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print error message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print warning message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print notice message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print info message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print debug message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* Print trace message.
*
* @param fmt printf() like format string.
*/
void ;
/**
* @}
*/
/**
* @name Extended message functions
* @{
*
* The msg68x_ output functions are identical to the msg68_ ones
* except for an additionnal cookie parameter which will be pass to
* the handler function instead of the one set by the
* msg68_set_cookie() function.
*/
/**
* Print message (eXtended version).
*
* @param cat message type @ref enum_msg68_bit.
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print message (eXtended version; variable argument).
*
* @param cat message type @ref enum_msg68_bit.
* @param cookie user data.
* @param fmt printf() like format string.
* @param list variable argument list (stdarg.h)
*/
void ;
/**
* Print critical message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print error message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print warning message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print notice message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print info message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print debug message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* Print trace message (eXtended version).
*
* @param cookie user data.
* @param fmt printf() like format string.
*/
void ;
/**
* @}
*/
/**
* @}
*/
static void
/* #ifndef _FILE68_MSG68_H_ */