2008-10-02 18:47:02 +00:00
|
|
|
/**************************************************************************
|
2009-02-07 23:28:13 +00:00
|
|
|
* config :
|
2008-10-02 18:47:02 +00:00
|
|
|
* - parse config file in Panel struct.
|
|
|
|
*
|
|
|
|
* Check COPYING file for Copyright
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2015-11-20 22:28:37 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2009-08-29 16:19:01 +00:00
|
|
|
extern char *config_path;
|
2009-11-10 21:11:31 +00:00
|
|
|
extern char *snapshot_path;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2010-04-18 14:28:45 +00:00
|
|
|
// default global data
|
2010-04-18 12:07:36 +00:00
|
|
|
void default_config();
|
2010-04-18 14:28:45 +00:00
|
|
|
|
2010-04-18 12:07:36 +00:00
|
|
|
// freed memory
|
2009-02-07 23:28:13 +00:00
|
|
|
void cleanup_config();
|
2010-04-18 12:07:36 +00:00
|
|
|
|
2015-11-20 22:28:37 +00:00
|
|
|
gboolean config_read();
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
#endif
|