aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_sample.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2010-01-21include config.h in *every* source filemichael1-0/+2
2010-01-19included "config.h" in "plugin.h" and changed "plugin.c" and "plugin_sample.c...mzuther1-6/+4
2008-04-10Add the year 2008 to the copyrightmichux1-1/+1
2007-09-09email address changedmichael1-1/+1
2007-01-15minor cosmetic changes and fixesmichael1-1/+1
2007-01-14removed all tagsmichael1-48/+0
2007-01-14svn properties fixedmichael1-1/+2
2005-11-04[lcd4linux @ 2005-11-04 04:53:08 by reinelt]reinelt1-8/+11
2005-05-08[lcd4linux @ 2005-05-08 04:32:43 by reinelt]reinelt1-100/+104
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-63/+69
2004-06-01[lcd4linux @ 2004-06-01 06:04:25 by reinelt]reinelt1-17/+22
2004-03-03[lcd4linux @ 2004-03-03 03:47:04 by reinelt]reinelt1-1/+12
2004-01-30[lcd4linux @ 2004-01-30 20:57:55 by reinelt]reinelt1-1/+9
2004-01-29[lcd4linux @ 2004-01-29 04:40:02 by reinelt]reinelt1-1/+6
2004-01-13[lcd4linux @ 2004-01-13 10:03:01 by reinelt]reinelt1-1/+6
2004-01-06[lcd4linux @ 2004-01-06 17:33:45 by reinelt]reinelt1-0/+213
Copyright (C) 1999, 2000 Michael Reinelt <michael@reinelt.co.at> * Copyright (C) 2004 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 _DEBUG_H_ #define _DEBUG_H_ extern int running_foreground; extern int running_background; extern int verbose_level; void message(const int level, const char *format, ...) __attribute__ ((format(__printf__, 2, 3))); #define debug(args...) message (2, __FILE__ ": " args) #define info(args...) message (1, args) #define error(args...) message (0, args) #endif