diff options
author | Christian Hesse <mail@eworm.de> | 2013-10-28 13:36:46 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-10-28 13:36:46 +0100 |
commit | 8a0a37b645d9118a60de3d53b51be5a91c42defe (patch) | |
tree | dd906d702c6ce0254e10609e1197d9678690a6cd | |
parent | 33bc696af012d386d334be5ee4b90c718e2475cf (diff) | |
download | mpd-notification-8a0a37b645d9118a60de3d53b51be5a91c42defe.tar.gz mpd-notification-8a0a37b645d9118a60de3d53b51be5a91c42defe.tar.zst |
add some code to the header file
-rw-r--r-- | config.def.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 48de332..cf9bdb6 100644 --- a/config.def.h +++ b/config.def.h @@ -1,3 +1,13 @@ +/* + * (C) 2011-2013 by Christian Hesse <mail@eworm.de> + * + * This software may be used and distributed according to the terms + * of the GNU General Public License, incorporated herein by reference. + */ + +#ifndef _CONFIG_H +#define _CONFIG_H + /* name of the icon used for notifications */ #define ICON_SOUND "sound" @@ -22,3 +32,7 @@ #define MPD_HOST NULL #define MPD_PORT 0 #define MPD_TIMEOUT 0 + +#endif /* _CONFIG_H */ + +// vim: set syntax=c: |