aboutsummaryrefslogtreecommitdiffstats
path: root/widget_bar.h (follow)
AgeCommit message (Expand)AuthorFilesLines
2011-12-22All compilation related issues in the headers have been fixed. Now each heade...mjona1-0/+2
2007-09-09email address changedmichael1-1/+1
2007-01-20dynamic properties for bars; new 'property_valid()' helpermichael1-8/+6
2007-01-14removed all tagsmichael1-40/+0
2007-01-14svn properties fixedmichael1-1/+2
2006-08-13[lcd4linux @ 2006-08-13 06:46:51 by reinelt]reinelt1-3/+6
2006-08-09[lcd4linux @ 2006-08-09 17:25:34 by harbaum]harbaum1-1/+6
2005-05-08[lcd4linux @ 2005-05-08 04:32:43 by reinelt]reinelt1-18/+21
2005-05-06[lcd4linux @ 2005-05-06 06:37:34 by reinelt]reinelt1-1/+6
2005-01-18[lcd4linux @ 2005-01-18 06:30:21 by reinelt]reinelt1-3/+6
2004-06-26[lcd4linux @ 2004-06-26 12:04:59 by reinelt]reinelt1-2/+6
2004-06-26[lcd4linux @ 2004-06-26 09:27:20 by reinelt]reinelt1-16/+22
2004-03-06[lcd4linux @ 2004-03-06 20:31:16 by reinelt]reinelt1-1/+11
2004-01-20[lcd4linux @ 2004-01-20 04:51:39 by reinelt]reinelt1-3/+12
2004-01-18[lcd4linux @ 2004-01-18 21:25:16 by reinelt]reinelt1-0/+49
l.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* $Id$
 * $URL$
 *
 * config file stuff
 *
 * Copyright (C) 1999, 2000 Michael Reinelt <michael@reinelt.co.at>
 * Copyright (C) 2004, 2009 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * LCD4Linux is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#ifndef _CFG_H_
#define _CFG_H_

int cfg_init(const char *file);
char *cfg_source(void);
int cfg_cmd(const char *arg);
char *cfg_list(const char *section);
int cfg_rename(const char *section, const char *old, const char *new);
char *cfg_get_raw(const char *section, const char *key, const char *defval);
char *cfg_get(const char *section, const char *key, const char *defval);
int cfg_number(const char *section, const char *key, const int defval, const int min, const int max, int *value);
int cfg_exit(void);

#endif