awesome/config.h

34 lines
1.1 KiB
C
Raw Normal View History

2007-12-10 13:43:28 +01:00
/*
2007-09-12 14:29:51 +02:00
* config.h - configuration management header
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program 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 of the License, or
* (at your option) any later version.
*
* This program 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
#ifndef AWESOME_CONFIG_H
#define AWESOME_CONFIG_H
2007-09-05 20:15:00 +02:00
2008-01-13 15:44:01 +01:00
#include "structs.h"
2007-09-05 20:15:00 +02:00
2008-01-12 20:53:19 +01:00
DO_SLIST(Key, key, p_delete);
2008-01-12 20:56:41 +01:00
DO_SLIST(Button, button, p_delete);
void config_parse(const char *);
2007-09-05 20:15:00 +02:00
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80