1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
3 | // See LICENSE.txt for details. |
---|
4 | |
---|
5 | #ifndef _FRAMSG_H_ |
---|
6 | #define _FRAMSG_H_ |
---|
7 | |
---|
8 | #include <stdarg.h> |
---|
9 | |
---|
10 | extern const char* MSG_LEVEL[]; |
---|
11 | #define FRAMSG_FORMAT "%s%s.%s: %s" |
---|
12 | #define FRAMSG_MULTILINE_CONTINUATION "..." |
---|
13 | |
---|
14 | void FMprintf(const char *o,const char *m,int w,const char *bl, ...); |
---|
15 | void FMprintf_va(const char *o,const char *m,int w,const char *bl,va_list va); //a different name than FMprintf - otherwise the compiler could confuse the "string" parameter with va_list and could call the wrong function |
---|
16 | void printFM(const char *bl,...); //a shorthand for printf (a different name again to avoid the risk of confusion with the two functions above. This would be unlikely but possible when the argument types would match) |
---|
17 | void FramMessage(const char *o,const char *m,const char *txt,int w); |
---|
18 | |
---|
19 | void _FramMessageSingleLine(const char *o,const char *m,const char *txt,int w); //don't call this directly - it is used internally |
---|
20 | |
---|
21 | #define FMLV_DEBUG -1 |
---|
22 | #define FMLV_INFO 0 |
---|
23 | #define FMLV_WARN 1 |
---|
24 | #define FMLV_ERROR 2 |
---|
25 | #define FMLV_CRITICAL 3 |
---|
26 | |
---|
27 | /* |
---|
28 | w: weight (importance) of a message |
---|
29 | -1:debugging information, not needed for final users |
---|
30 | 0: information |
---|
31 | 1: warning or corrected error |
---|
32 | 2: uncorrected error. can cause malfunction |
---|
33 | 3: serious error, causes side effects. user should save what can be saved and restart the application |
---|
34 | */ |
---|
35 | |
---|
36 | #endif |
---|