Filename changed

This commit is contained in:
Jesse van den Kieboom 2005-11-06 16:20:58 +00:00
parent 3c9fb56df5
commit 2f659cf921
1 changed files with 13 additions and 0 deletions

13
src/gm-debug.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef __GM_DEBUG_H__
#define __GM_DEBUG_H__ 1
typedef enum _GmDebugLevel {
DEBUG_ALWAYS = 1 << 1,
DEBUG_DEFAULT = 1 << 2,
DEBUG_MCP = 1 << 3
} GmDebugLevel;
void gm_debug_msg(GmDebugLevel level, char *line, ...);
void gm_debug_set_level(GmDebugLevel level);
#endif /* __GM_DEBUG_H__ */