aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/log.h
diff options
context:
space:
mode:
authorGravatar Alex Bennee <alex@bennee.com>2010-07-14 16:01:16 +0100
committerGravatar Alex Bennee <alex@bennee.com>2010-07-14 16:01:16 +0100
commit26b8e06374c71e42be86694f5d5c4ee920ae4d26 (patch)
treef94a09ea9cf0e006d73c0ef497f387fd0ed91ccb /src/log.h
parentd022d6443c6b7564ae05a3af70035822bccd0b19 (diff)
EasyTag 2.1.4
Diffstat (limited to 'src/log.h')
-rwxr-xr-x[-rw-r--r--]src/log.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/log.h b/src/log.h
index 2ec4408..d1bb8db 100644..100755
--- a/src/log.h
+++ b/src/log.h
@@ -27,6 +27,16 @@
//#include "et_core.h"
+/*
+ * Types of errors
+ */
+typedef enum
+{
+ LOG_UNKNOWN = 0,
+ LOG_OK,
+ LOG_ERROR
+} Log_Error_Type;
+
/**************
* Prototypes *
@@ -36,7 +46,7 @@ GtkWidget *Create_Log_Area (void);
void Log_Clean_Log_List (void);
-void Log_Print (gchar const *format, ...);
+void Log_Print (Log_Error_Type error_type, gchar const *format, ...);
#endif /* __LOG_H__ */