repo.or.cz
/
wikipediardware.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[rendering] This simple trick didn't work...
[wikipediardware.git]
/
wiki-lib
/
include
/
msg.h
blob
e7adaf57866963ab3cd4c7f030596d77daa2939c
1
#ifndef WL_MSG_H
2
#define WL_MSG_H
3
4
enum
{
5
MSG_ERROR
=
0
,
6
MSG_WARNING
,
7
MSG_INFO
,
8
MSG_DEBUG
,
9
MSG_LEVEL_MAX
10
};
11
12
void
msg
(
int
level
,
const char
*
format
, ...);
13
void
set_loglevel
(
int
level
);
14
15
#endif
/* WL_MSG_H */