Last change
on this file since 140 was
122,
checked in by sz, 11 years ago
|
(c)opyright information added
|
-
Property svn:eol-style set to
native
|
File size:
1.3 KB
|
Rev | Line | |
---|
[122] | 1 | // This file is a part of the Framsticks GDK. |
---|
| 2 | // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
| 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
[109] | 5 | #ifndef _FRAMSG_H_ |
---|
| 6 | #define _FRAMSG_H_ |
---|
| 7 | |
---|
| 8 | #include <stdarg.h> |
---|
| 9 | |
---|
[122] | 10 | extern const char* MSG_LEVEL[]; |
---|
[109] | 11 | |
---|
| 12 | void FMprintf(const char *o,const char *m,int w,const char *bl, ...); |
---|
[122] | 13 | 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 |
---|
| 14 | 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) |
---|
[109] | 15 | void FramMessage(const char *o,const char *m,const char *bl,int w); |
---|
| 16 | |
---|
| 17 | #define FMLV_DEBUG -1 |
---|
| 18 | #define FMLV_INFO 0 |
---|
| 19 | #define FMLV_WARN 1 |
---|
| 20 | #define FMLV_ERROR 2 |
---|
| 21 | #define FMLV_CRITICAL 3 |
---|
| 22 | |
---|
| 23 | /* |
---|
| 24 | w: weight (importance) of a message |
---|
| 25 | -1:debugging information, not needed for final users |
---|
| 26 | 0: information |
---|
| 27 | 1: warning or corrected error |
---|
| 28 | 2: uncorrected error. can cause malfunction |
---|
| 29 | 3: serious error, causes side effects. user should save what can be saved and restart the application |
---|
| 30 | */ |
---|
| 31 | |
---|
| 32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.