This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/src/gm-debug.h

15 lines
301 B
C
Raw Normal View History

2005-11-06 17:20:58 +01:00
#ifndef __GM_DEBUG_H__
#define __GM_DEBUG_H__ 1
typedef enum _GmDebugLevel {
DEBUG_ALWAYS = 1 << 1,
DEBUG_DEFAULT = 1 << 2,
2005-11-07 10:46:20 +01:00
DEBUG_MCP = 1 << 3,
DEBUG_ALL = 0xFFFF
2005-11-06 17:20:58 +01:00
} GmDebugLevel;
2005-11-07 10:46:20 +01:00
void gm_debug_msg(gint level, char *line, ...);
void gm_debug_set_level(gchar *level);
2005-11-06 17:20:58 +01:00
#endif /* __GM_DEBUG_H__ */