ReactOS 0.4.15-dev-7842-g558ab78
fbtlog.h
Go to the documentation of this file.
1#ifndef _FBT_DEBUG
2#define _FBT_DEBUG
3
4#define fbtLog_None 0
5#define fbtLog_Failure 1
6#define fbtLog_Warning 2
7#define fbtLog_Notice 3
8#define fbtLog_Enter 4
9#define fbtLog_Exit 4
10#define fbtLog_Verbose 5
11#define fbtLog_Exception 0
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17void fbtLog(unsigned int nLevel, const char *szText, ...);
18BOOL fbtLogSetFile(char *szDebugFile);
19void fbtLogSetLevel(unsigned int nLevel);
20unsigned int fbtLogGetLevel(void);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif
void fbtLog(unsigned int nLevel, const char *szText,...)
unsigned int fbtLogGetLevel(void)
void fbtLogSetLevel(unsigned int nLevel)
BOOL fbtLogSetFile(char *szDebugFile)
unsigned int BOOL
Definition: ntddk_ex.h:94