diff options
-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 a60c448..08455a6 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 + /* pixels are scaled up by this factor */ #define QRCODE_SCALE 2 /* this is the maximum scale factor */ @@ -28,3 +38,7 @@ #define PNG_ENABLE_TEXT_VERSIONS 1 /* add referer information to the PNG file? */ #define PNG_ENABLE_TEXT_REFERER 1 + +#endif /* _CONFIG_H */ + +// vim: set syntax=c: |