Remove commented out code.
[geeqie.git] / src / logwindow.h
1 /*
2  * Geeqie
3  * Copyright (C) 2008 - 2012 The Geeqie Team
4  *
5  * Author: Vladimir Nadvornik, Laurent Monin
6  * based on logwindow.[ch] from Sylpheed 2.4.7 (C) Hiroyuki Yamamoto
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13 #ifndef LOGWINDOW_H
14 #define LOGWINDOW_H
15
16 typedef enum
17 {
18         LOG_NORMAL = 0,
19         LOG_MSG,
20         LOG_WARN,
21         LOG_ERROR,
22         LOG_COUNT
23 } LogType;
24
25 void log_window_new(void);
26
27 void log_window_append(const gchar *str, LogType type);
28
29 #endif /* LOGWINDOW_H */
30 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */