Add vim modelines.
[monky] / src / bmpx.h
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Please see COPYING for details
4  *
5  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
6  *      (see AUTHORS)
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  * vim: ts=4 sw=4 noet ai cindent syntax=c
22  *
23  */
24
25 #ifndef BMPX_H_
26 #define BMPX_H_
27
28 void update_bmpx(void);
29 struct bmpx_s {
30         char *title;
31         char *artist;
32         char *album;
33         char *uri;
34         int bitrate;
35         int track;
36 };
37
38 #endif /*BMPX_H_*/