7ee42e8ca1
git-svn-id: http://tint2.googlecode.com/svn/trunk@424 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
25 lines
491 B
C
25 lines
491 B
C
/**************************************************************************
|
|
* config :
|
|
* - parse config file in Panel struct.
|
|
*
|
|
* Check COPYING file for Copyright
|
|
*
|
|
**************************************************************************/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
extern char *config_path;
|
|
extern char *snapshot_path;
|
|
|
|
// default global data
|
|
void default_config();
|
|
|
|
// freed memory
|
|
void cleanup_config();
|
|
|
|
int config_read_file (const char *path);
|
|
int config_read ();
|
|
|
|
#endif
|
|
|